mirror of
https://github.com/datahub-project/datahub.git
synced 2025-07-31 05:18:18 +00:00
21 lines
420 B
GraphQL
21 lines
420 B
GraphQL
![]() |
query batchGetStepStates($input: BatchGetStepStatesInput!) {
|
||
|
batchGetStepStates(input: $input) {
|
||
|
results {
|
||
|
id
|
||
|
properties {
|
||
|
key
|
||
|
value
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|
||
|
mutation batchUpdateStepStates($input: BatchUpdateStepStatesInput!) {
|
||
|
batchUpdateStepStates(input: $input) {
|
||
|
results {
|
||
|
id
|
||
|
succeeded
|
||
|
}
|
||
|
}
|
||
|
}
|