Add query to getTransactionInformation to the queries of the frontend.

This commit is contained in:
elweyn 2022-03-09 17:15:42 +01:00
parent 3c9b5ea63c
commit 281be67ceb

View File

@ -127,3 +127,20 @@ export const communities = gql`
}
}
`
export const queryTransactionLink = gql`
query($code: String!) {
queryTransactionLink(code: $code) {
amount
memo
createdAt
validUntil
user {
email
firstName
lastName
publisherId
}
}
}
`