mirror of
https://github.com/IT4Change/gradido.git
synced 2026-02-06 09:56:05 +00:00
32 lines
646 B
GraphQL
32 lines
646 B
GraphQL
# -----------------------------------------------
|
|
# !!! THIS FILE WAS GENERATED BY TYPE-GRAPHQL !!!
|
|
# !!! DO NOT MODIFY THIS FILE BY YOURSELF !!!
|
|
# -----------------------------------------------
|
|
|
|
"""The `Decimal` scalar type to represent currency values"""
|
|
scalar Decimal
|
|
|
|
type Mutation {
|
|
transmitTransaction(data: TransactionInput!): TransmitTransactionResult!
|
|
}
|
|
|
|
type Query {
|
|
version: String!
|
|
}
|
|
|
|
input TransactionInput {
|
|
amount: Decimal!
|
|
createdAt: Int!
|
|
type: TransactionType!
|
|
}
|
|
|
|
"""Type of the transaction"""
|
|
enum TransactionType {
|
|
CREATION
|
|
RECEIVE
|
|
SEND
|
|
}
|
|
|
|
type TransmitTransactionResult {
|
|
dltTransactionIdHex: String!
|
|
} |