mirror of
https://github.com/IT4Change/gradido.git
synced 2025-12-13 07:45:54 +00:00
18 lines
237 B
JavaScript
18 lines
237 B
JavaScript
import gql from 'graphql-tag'
|
|
|
|
export const getPendingCreations = gql`
|
|
query {
|
|
getPendingCreations {
|
|
id
|
|
firstName
|
|
lastName
|
|
email
|
|
amount
|
|
memo
|
|
date
|
|
moderator
|
|
creation
|
|
}
|
|
}
|
|
`
|