William Petit
591112a800
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/
12 lines
147 B
GraphQL
12 lines
147 B
GraphQL
# GraphQL schema example
|
|
#
|
|
# https://gqlgen.com/getting-started/
|
|
|
|
type User {
|
|
name: String
|
|
email: String!
|
|
}
|
|
|
|
type Query {
|
|
userProfile: User
|
|
} |