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

graphql.identity.graphqls Maven / Gradle / Ivy

The newest version!
extend type Query {
    currentUser:                User
    users:                      [User]!
    roles:                      [Role]!
}

extend type Mutation {
    login(username: String!, password: String!): String!
}

type User {
    id:                         ID!
    username:                   String!
    emailAddress:               String
    familyName:                 String
    givenName:                  String
    isAdmin:                    Boolean!
    roles:                      [Role]!
}

type Role {
    name:                       ID!
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy