mirror of
https://github.com/Retropex/apolloapi-v2.git
synced 2025-05-17 13:40:41 +02:00
14 lines
157 B
JavaScript
14 lines
157 B
JavaScript
module.exports.typeDefs = `
|
|
type Query {
|
|
Miner: MinerActions
|
|
}
|
|
`
|
|
|
|
module.exports.resolvers = {
|
|
Query: {
|
|
Miner () {
|
|
return {}
|
|
}
|
|
}
|
|
}
|