directive @auth(can: String!) on FIELD_DEFINITION """Generated from GGL node: (root:Root)""" type Root { id: ID! title: String } input RootInput { title: String } """Generated from GGL node: (read_user:User)""" type User { id: ID! name: String age: String active: String } input UserInput { name: String age: String active: String } type Query { readUser: User @auth(can: "user/read") } type Mutation { saveUser(inputUser: UserInput): User! }