Intégration d'un point d'entrée GraphQL et d'un connecteur pour
PostgreSQL - Possibilité de migrer le schéma de la base de données via drapeau - Génération du code GraphQL avec https://gqlgen.com/
This commit is contained in:
12
internal/graph/schema.graphqls
Normal file
12
internal/graph/schema.graphqls
Normal file
@ -0,0 +1,12 @@
|
||||
# GraphQL schema example
|
||||
#
|
||||
# https://gqlgen.com/getting-started/
|
||||
|
||||
type User {
|
||||
name: String
|
||||
email: String!
|
||||
}
|
||||
|
||||
type Query {
|
||||
userProfile: User
|
||||
}
|
Reference in New Issue
Block a user