Skip to main content

HeliumBatch

No description

HeliumBatch(
key: String!
nickname: String!
): String!

Arguments

HeliumBatch.key ● String! non-null scalar

HeliumBatch.nickname ● String! non-null scalar

Type

String scalar

The String scalar type represents textual data, represented as UTF-8 character sequences. The String type is most often used by GraphQL to represent free-form human-readable text.

Examples

Run in Postman

Query:

HeliumBatch(
$key: String!,
$nickname: String!
) {
HeliumBatch(
key: $key,
nickname: $nickname
)
}

Variables:

{
"key": "xyz789",
"nickname": "abc123"
}

Response:

{
"data": {
"HeliumBatch": "abc123"
}
}