Files
backstage/plugins/graphql/schema.gql
T
2020-08-02 19:29:21 +02:00

12 lines
126 B
GraphQL

type CatalogEntity {
id: String
}
type CatalogQuery {
list: [CatalogEntity!]!
}
type Query {
catalog: CatalogQuery!
}