stacker.news/api/typeDefs/wallet.js

12 lines
192 B
JavaScript
Raw Normal View History

2021-04-30 21:42:51 +00:00
import { gql } from 'apollo-server-micro'
export default gql`
extend type Query {
2021-05-06 21:15:22 +00:00
invoice(id: ID!): String!
2021-04-30 21:42:51 +00:00
}
extend type Mutation {
2021-05-06 21:15:22 +00:00
createInvoice(amount: Int!): String!
2021-04-30 21:42:51 +00:00
}
`