mirror of
https://git.vectorsigma.ru/public/photoview.git
synced 2026-08-03 22:09:20 +00:00
32 lines
774 B
TypeScript
32 lines
774 B
TypeScript
/* tslint:disable */
|
|
/* eslint-disable */
|
|
// @generated
|
|
// This file was automatically generated and should not be edited.
|
|
|
|
// ====================================================
|
|
// GraphQL mutation operation: moveImageFaces
|
|
// ====================================================
|
|
|
|
export interface moveImageFaces_moveImageFaces_imageFaces {
|
|
__typename: 'ImageFace'
|
|
id: string
|
|
}
|
|
|
|
export interface moveImageFaces_moveImageFaces {
|
|
__typename: 'FaceGroup'
|
|
id: string
|
|
imageFaces: moveImageFaces_moveImageFaces_imageFaces[]
|
|
}
|
|
|
|
export interface moveImageFaces {
|
|
/**
|
|
* Move a list of ImageFaces to another face group
|
|
*/
|
|
moveImageFaces: moveImageFaces_moveImageFaces
|
|
}
|
|
|
|
export interface moveImageFacesVariables {
|
|
faceIDs: string[]
|
|
destFaceGroupID: string
|
|
}
|