123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120 |
- import * as Types from './schema'
- import gql from 'graphql-tag'
- export type StorageNodeInfoFragment = {
- id: string
- operatorMetadata?: Types.Maybe<{ nodeEndpoint?: Types.Maybe<string> }>
- }
- export type GetStorageNodesInfoByBagIdQueryVariables = Types.Exact<{
- bagId?: Types.Maybe<Types.Scalars['String']>
- }>
- export type GetStorageNodesInfoByBagIdQuery = { storageBuckets: Array<StorageNodeInfoFragment> }
- export type DataObjectInfoFragment = {
- id: string
- size: any
- deletionPrize: any
- type:
- | { __typename: 'DataObjectTypeChannelAvatar'; channel?: Types.Maybe<{ id: string }> }
- | { __typename: 'DataObjectTypeChannelCoverPhoto'; channel?: Types.Maybe<{ id: string }> }
- | { __typename: 'DataObjectTypeVideoMedia'; video?: Types.Maybe<{ id: string }> }
- | { __typename: 'DataObjectTypeVideoThumbnail'; video?: Types.Maybe<{ id: string }> }
- | { __typename: 'DataObjectTypeUnknown' }
- }
- export type GetDataObjectsByBagIdQueryVariables = Types.Exact<{
- bagId?: Types.Maybe<Types.Scalars['ID']>
- }>
- export type GetDataObjectsByBagIdQuery = { storageDataObjects: Array<DataObjectInfoFragment> }
- export type GetDataObjectsChannelIdQueryVariables = Types.Exact<{
- channelId?: Types.Maybe<Types.Scalars['ID']>
- }>
- export type GetDataObjectsChannelIdQuery = { storageDataObjects: Array<DataObjectInfoFragment> }
- export type GetDataObjectsByVideoIdQueryVariables = Types.Exact<{
- videoId?: Types.Maybe<Types.Scalars['ID']>
- }>
- export type GetDataObjectsByVideoIdQuery = { storageDataObjects: Array<DataObjectInfoFragment> }
- export const StorageNodeInfo = gql`
- fragment StorageNodeInfo on StorageBucket {
- id
- operatorMetadata {
- nodeEndpoint
- }
- }
- `
- export const DataObjectInfo = gql`
- fragment DataObjectInfo on StorageDataObject {
- id
- size
- deletionPrize
- type {
- __typename
- ... on DataObjectTypeVideoMedia {
- video {
- id
- }
- }
- ... on DataObjectTypeVideoThumbnail {
- video {
- id
- }
- }
- ... on DataObjectTypeChannelAvatar {
- channel {
- id
- }
- }
- ... on DataObjectTypeChannelCoverPhoto {
- channel {
- id
- }
- }
- }
- }
- `
- export const GetStorageNodesInfoByBagId = gql`
- query getStorageNodesInfoByBagId($bagId: String) {
- storageBuckets(
- where: {
- operatorStatus_json: { isTypeOf_eq: "StorageBucketOperatorStatusActive" }
- bagAssignments_some: { storageBagId_eq: $bagId }
- operatorMetadata: { nodeEndpoint_contains: "http" }
- }
- ) {
- ...StorageNodeInfo
- }
- }
- ${StorageNodeInfo}
- `
- export const GetDataObjectsByBagId = gql`
- query getDataObjectsByBagId($bagId: ID) {
- storageDataObjects(where: { storageBag: { id_eq: $bagId } }) {
- ...DataObjectInfo
- }
- }
- ${DataObjectInfo}
- `
- export const GetDataObjectsChannelId = gql`
- query getDataObjectsChannelId($channelId: ID) {
- storageDataObjects(where: { type_json: { channelId_eq: $channelId } }) {
- ...DataObjectInfo
- }
- }
- ${DataObjectInfo}
- `
- export const GetDataObjectsByVideoId = gql`
- query getDataObjectsByVideoId($videoId: ID) {
- storageDataObjects(where: { type_json: { videoId_eq: $videoId } }) {
- ...DataObjectInfo
- }
- }
- ${DataObjectInfo}
- `
|