mirror of
https://github.com/datahub-project/datahub.git
synced 2025-07-21 08:32:05 +00:00

* feat(onboarding): adds models and API for onboarding steps feature * feat(onboarding): adds backend for onboarding steps feature * feat(onboarding): adds framework and some steps for onboarding steps UI
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
|
|
}
|
|
}
|
|
}
|