axonhub / examples /openapi /graphql /openapi.graphql
llzai's picture
Upload 1793 files
9853396 verified
Raw
History Blame Contribute Delete
144 Bytes
type APIKey {
key: String!
name: String!
scopes: [String!]
}
extend type Mutation {
createLLMAPIKey(name: String!): APIKey!
}