iris/_examples/graphql/schema-first/graph/schema.graphqls
Gerasimos (Makis) Maropoulos e9eb85af90
add graphql example
#2029
2023-02-07 03:01:24 +02:00

33 lines
634 B
GraphQL

# GraphQL schema example
#
# https://gqlgen.com/getting-started/
enum CliqueType {
"People who are elite with parents having money"
KOOKS
"People who desperate to move up the social ladder to become new versions of themselves and establish new beginnings"
POGUES
}
type Character {
id: ID!
name: String!
isHero: Boolean!
cliqueType: CliqueType!
}
input CharacterInput {
name: String!
id: String
isHero: Boolean
cliqueType: CliqueType!
}
type Mutation {
upsertCharacter(input: CharacterInput!): Character!
}
type Query {
character(id:ID!): Character
characters(cliqueType:CliqueType!): [Character!]
}