All Downloads are FREE. Search and download functionalities are using the official Maven repository.

graphql.schema.graphqls Maven / Gradle / Ivy

There is a newer version: 1.2.11
Show newest version
scalar Long
scalar Date

schema {
    query: Query
    mutation: Mutation
    subscription: Subscription
}

type Query {
    count(string: String): Long
    today: Date
}

type Mutation {
    reverse(string: String): String
}

type Subscription {
    greetings(name: String): String
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy