Last active
December 5, 2019 17:14
-
-
Save sonnyksimon/230b2a3d9d6472cf615aceee0f9fc86f to your computer and use it in GitHub Desktop.
sample.graphql
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
scalar Timestamp | |
type App { | |
users: [User] | |
securityEnabled: Boolean! | |
} | |
type User { | |
username: String! | |
displayName: String | |
email: String | |
active: Boolean! | |
verified: Boolean! | |
canExpire: Boolean! | |
expirationTime: Timestamp | |
roles: [Role] | |
} | |
type Role { | |
name: String | |
active: Boolean! | |
description: String | |
members: [User] | |
functions: [Function] | |
} | |
type Function { | |
name: String | |
active: Boolean! | |
description: String | |
roles: [Role] | |
} | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment