savedViewCreate
mutation
Create saved view. SavedViewCreateMutationResponse
Arguments
input
SavedViewCreateMutationInput!
required
Example Operation
# N-able GraphQL Operation

mutation SavedViewCreate($input: SavedViewCreateMutationInput!) {
  savedViewCreate(input: $input) {
    item {
      id
      namespace
      name
      version
      createdAt
      updatedAt
      definition
    }
  }
}