mirror of
https://github.com/IT4Change/gradido.git
synced 2026-02-06 09:56:05 +00:00
29 lines
447 B
JavaScript
29 lines
447 B
JavaScript
import gql from 'graphql-tag'
|
|
|
|
export const getContribution = gql`
|
|
query ($id: Int!) {
|
|
contribution(id: $id) {
|
|
id
|
|
firstName
|
|
lastName
|
|
amount
|
|
memo
|
|
createdAt
|
|
contributionDate
|
|
confirmedAt
|
|
confirmedBy
|
|
updatedAt
|
|
updatedBy
|
|
status
|
|
messagesCount
|
|
deniedAt
|
|
deniedBy
|
|
deletedAt
|
|
deletedBy
|
|
moderatorId
|
|
userId
|
|
resubmissionAt
|
|
}
|
|
}
|
|
`
|