mirror of
https://git.vectorsigma.ru/public/photoview.git
synced 2026-08-03 20:49:02 +00:00
36 lines
863 B
TypeScript
36 lines
863 B
TypeScript
/* tslint:disable */
|
|
/* eslint-disable */
|
|
// @generated
|
|
// This file was automatically generated and should not be edited.
|
|
|
|
// ====================================================
|
|
// GraphQL query operation: albumPathQuery
|
|
// ====================================================
|
|
|
|
export interface albumPathQuery_album_path {
|
|
__typename: 'Album'
|
|
id: string
|
|
title: string
|
|
}
|
|
|
|
export interface albumPathQuery_album {
|
|
__typename: 'Album'
|
|
id: string
|
|
/**
|
|
* A breadcrumb list of all parent albums down to this one
|
|
*/
|
|
path: albumPathQuery_album_path[]
|
|
}
|
|
|
|
export interface albumPathQuery {
|
|
/**
|
|
* Get album by id, user must own the album or be admin
|
|
* If valid tokenCredentials are provided, the album may be retrived without further authentication
|
|
*/
|
|
album: albumPathQuery_album
|
|
}
|
|
|
|
export interface albumPathQueryVariables {
|
|
id: string
|
|
}
|