stacker.news/api/typeDefs/wallet.js

58 lines
1.0 KiB
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-11 15:52:50 +00:00
invoice(id: ID!): Invoice!
2021-05-13 01:51:37 +00:00
withdrawl(id: ID!): Withdrawl!
2021-06-02 23:15:28 +00:00
connectAddress: String!
2021-11-30 15:23:26 +00:00
walletHistory(cursor: String): History
2021-04-30 21:42:51 +00:00
}
extend type Mutation {
2021-05-11 15:52:50 +00:00
createInvoice(amount: Int!): Invoice!
2021-05-13 01:51:37 +00:00
createWithdrawl(invoice: String!, maxFee: Int!): Withdrawl!
2021-05-11 15:52:50 +00:00
}
type Invoice {
id: ID!
createdAt: String!
bolt11: String!
expiresAt: String!
cancelled: Boolean!
confirmedAt: String
msatsReceived: Int
2021-04-30 21:42:51 +00:00
}
2021-05-13 01:51:37 +00:00
type Withdrawl {
id: ID!
createdAt: String!
hash: String!
bolt11: String!
msatsPaying: Int!
2021-05-13 21:19:51 +00:00
satsPaying: Int!
2021-05-13 01:51:37 +00:00
msatsPaid: Int
2021-05-13 21:19:51 +00:00
satsPaid: Int
2021-05-13 01:51:37 +00:00
msatsFeePaying: Int!
2021-05-13 21:19:51 +00:00
satsFeePaying: Int!
2021-05-13 01:51:37 +00:00
msatsFeePaid: Int
2021-05-13 21:19:51 +00:00
satsFeePaid: Int
2021-05-13 13:28:38 +00:00
status: String
2021-05-13 01:51:37 +00:00
}
2021-11-30 15:23:26 +00:00
type Fact {
id: ID!
2021-12-15 16:50:11 +00:00
bolt11: String
createdAt: String!
msats: Int!
2021-12-15 16:50:11 +00:00
msatsFee: Int
status: String!
type: String!
2021-12-15 16:50:11 +00:00
description: String
}
2021-11-30 15:23:26 +00:00
type History {
facts: [Fact!]!
cursor: String
}
2021-04-30 21:42:51 +00:00
`