import * as Types from '../graphql-types'; //============================================================== /* tslint:disable */ /* eslint-disable */ /* prettier-ignore */ // @generated // This file was automatically generated and should not be edited. //============================================================== export type GetComponentsByReferencesQueryVariables = Types.Exact<{ references: Array | Types.ComponentReferenceInput; }>; export type GetComponentsByReferencesQuery = { __typename?: 'Query', compass?: { __typename?: 'CompassCatalogQueryApi', componentsByReferences?: Array<{ __typename: 'CompassComponent', id: string, name: string, type: Types.CompassComponentType, typeId: string, slug?: string | null }> | null } | null }; export const GetComponentsByReferences = ` query getComponentsByReferences($references: [ComponentReferenceInput!]!) { compass { componentsByReferences(references: $references) { __typename ... on CompassComponent { id name type typeId slug } } } } `;