14 lines
230 B
GraphQL
14 lines
230 B
GraphQL
extend type Query {
|
|
serverApp( id: String! ): ServerApp
|
|
}
|
|
|
|
type ServerApp {
|
|
id: String!
|
|
name: String!
|
|
author: String!
|
|
ownerId: String
|
|
createdAt: String!
|
|
firstparty: Boolean!
|
|
redirectUrl: String!
|
|
scopes: [Scope]
|
|
} |