mirror of
https://github.com/graphql-hive/console
synced 2026-04-21 14:37:17 +00:00
223 lines
4.3 KiB
TypeScript
223 lines
4.3 KiB
TypeScript
import { graphql } from './gql';
|
|
|
|
export const FindCollectionQuery = graphql(`
|
|
query Collection($selector: TargetSelectorInput!, $id: ID!) {
|
|
target(reference: { bySelector: $selector }) {
|
|
id
|
|
documentCollection(id: $id) {
|
|
id
|
|
name
|
|
description
|
|
}
|
|
}
|
|
}
|
|
`);
|
|
|
|
export const CreateCollectionMutation = graphql(`
|
|
mutation CreateCollection(
|
|
$selector: TargetSelectorInput!
|
|
$input: CreateDocumentCollectionInput!
|
|
) {
|
|
createDocumentCollection(selector: $selector, input: $input) {
|
|
error {
|
|
message
|
|
}
|
|
ok {
|
|
updatedTarget {
|
|
id
|
|
documentCollections {
|
|
edges {
|
|
cursor
|
|
node {
|
|
id
|
|
name
|
|
}
|
|
}
|
|
}
|
|
}
|
|
collection {
|
|
id
|
|
name
|
|
operations(first: 100) {
|
|
edges {
|
|
cursor
|
|
node {
|
|
id
|
|
name
|
|
}
|
|
cursor
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
`);
|
|
|
|
export const UpdateCollectionMutation = graphql(`
|
|
mutation UpdateCollection(
|
|
$selector: TargetSelectorInput!
|
|
$input: UpdateDocumentCollectionInput!
|
|
) {
|
|
updateDocumentCollection(selector: $selector, input: $input) {
|
|
error {
|
|
message
|
|
}
|
|
ok {
|
|
updatedTarget {
|
|
id
|
|
documentCollections {
|
|
edges {
|
|
node {
|
|
id
|
|
name
|
|
}
|
|
cursor
|
|
}
|
|
}
|
|
}
|
|
collection {
|
|
id
|
|
name
|
|
description
|
|
operations(first: 100) {
|
|
edges {
|
|
cursor
|
|
node {
|
|
id
|
|
name
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
`);
|
|
|
|
export const DeleteCollectionMutation = graphql(`
|
|
mutation DeleteCollection($selector: TargetSelectorInput!, $id: ID!) {
|
|
deleteDocumentCollection(selector: $selector, id: $id) {
|
|
error {
|
|
message
|
|
}
|
|
ok {
|
|
deletedId
|
|
updatedTarget {
|
|
id
|
|
documentCollections {
|
|
edges {
|
|
cursor
|
|
node {
|
|
id
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
`);
|
|
|
|
export const CreateOperationMutation = graphql(`
|
|
mutation CreateOperation(
|
|
$selector: TargetSelectorInput!
|
|
$input: CreateDocumentCollectionOperationInput!
|
|
) {
|
|
createOperationInDocumentCollection(selector: $selector, input: $input) {
|
|
error {
|
|
message
|
|
}
|
|
ok {
|
|
operation {
|
|
id
|
|
name
|
|
}
|
|
collection {
|
|
id
|
|
operations {
|
|
edges {
|
|
cursor
|
|
node {
|
|
id
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
`);
|
|
|
|
export const UpdateOperationMutation = graphql(`
|
|
mutation UpdateOperation(
|
|
$selector: TargetSelectorInput!
|
|
$input: UpdateDocumentCollectionOperationInput!
|
|
) {
|
|
updateOperationInDocumentCollection(selector: $selector, input: $input) {
|
|
error {
|
|
message
|
|
}
|
|
ok {
|
|
operation {
|
|
id
|
|
name
|
|
query
|
|
variables
|
|
headers
|
|
}
|
|
}
|
|
}
|
|
}
|
|
`);
|
|
|
|
export const DeleteOperationMutation = graphql(`
|
|
mutation DeleteOperation($selector: TargetSelectorInput!, $id: ID!) {
|
|
deleteOperationInDocumentCollection(selector: $selector, id: $id) {
|
|
error {
|
|
message
|
|
}
|
|
ok {
|
|
deletedId
|
|
updatedTarget {
|
|
id
|
|
documentCollections {
|
|
edges {
|
|
cursor
|
|
node {
|
|
id
|
|
operations {
|
|
edges {
|
|
node {
|
|
id
|
|
}
|
|
cursor
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
`);
|
|
|
|
export const UpdatePreflightScriptMutation = graphql(`
|
|
mutation UpdatePreflightScript($input: UpdatePreflightScriptInput!) {
|
|
updatePreflightScript(input: $input) {
|
|
ok {
|
|
updatedTarget {
|
|
id
|
|
preflightScript {
|
|
id
|
|
sourceCode
|
|
}
|
|
}
|
|
}
|
|
error {
|
|
message
|
|
}
|
|
}
|
|
}
|
|
`);
|