feat: add in schema.py resolver fro _server

This commit is contained in:
2023-10-06 03:51:23 -03:00
parent 6ddfc11a91
commit d9f47183c8
2 changed files with 11 additions and 0 deletions

View File

@@ -1,4 +1,5 @@
scalar DateTime
type _Service {
sdl: String
}
@@ -236,6 +237,8 @@ type Query {
topicsRandom(amount: Int): [Topic]!
topicsByCommunity(community: String!): [Topic]!
topicsByAuthor(author: String!): [Topic]!
# Apollo SDL
_service: _Service!
}