Mutations
createStepField
Creates a new field within a step. Fields are used to collect data during a run.
MUTATION
createStepField(input: CreateStepFieldInput!): CreateStepFieldArguments
input
required
Returns
stepField
Mutation
Variables
Response
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Creates a new field within a step. Fields are used to collect data during a run.
createStepField(input: CreateStepFieldInput!): CreateStepFieldmutation CreateStepField($input: CreateStepFieldInput!) {
createStepField(input: $input) {
stepField {
LastSessionId
_ValidationsCount
_created
_etag
_updated
allowNotApplicable
}
}
}{
"input": {
"name": "string",
"stepId": "id"
}
}{
"data": {
"createStepField": {
"stepField": {
"LastSessionId": "string",
"_ValidationsCount": 1,
"_created": "value",
"_etag": "string",
"_updated": "value",
"allowNotApplicable": true
}
}
}
}Was this page helpful?
mutation CreateStepField($input: CreateStepFieldInput!) {
createStepField(input: $input) {
stepField {
LastSessionId
_ValidationsCount
_created
_etag
_updated
allowNotApplicable
}
}
}{
"input": {
"name": "string",
"stepId": "id"
}
}{
"data": {
"createStepField": {
"stepField": {
"LastSessionId": "string",
"_ValidationsCount": 1,
"_created": "value",
"_etag": "string",
"_updated": "value",
"allowNotApplicable": true
}
}
}
}Suggestions