Fixes #9827 Also uncovered a conflict with `@objectType('Relation')` and `@objectType('relation)` I don't want to address it in this PR so I will create a followup issue when we close this but I think there's a confusion between Relation/RelationMetadata, it's unclear what is what --------- Co-authored-by: Antoine Moreaux <moreaux.antoine@gmail.com>
115 lines
2.7 KiB
TypeScript
115 lines
2.7 KiB
TypeScript
import { gql } from '@apollo/client';
|
|
|
|
export const FIND_MANY_OBJECT_METADATA_ITEMS = gql`
|
|
query ObjectMetadataItems(
|
|
$objectFilter: ObjectFilter
|
|
$fieldFilter: FieldFilter
|
|
) {
|
|
objects(paging: { first: 1000 }, filter: $objectFilter) {
|
|
edges {
|
|
node {
|
|
id
|
|
dataSourceId
|
|
nameSingular
|
|
namePlural
|
|
labelSingular
|
|
labelPlural
|
|
description
|
|
icon
|
|
isCustom
|
|
isRemote
|
|
isActive
|
|
isSystem
|
|
createdAt
|
|
updatedAt
|
|
labelIdentifierFieldMetadataId
|
|
imageIdentifierFieldMetadataId
|
|
shortcut
|
|
isLabelSyncedWithName
|
|
indexMetadatas(paging: { first: 100 }) {
|
|
edges {
|
|
node {
|
|
id
|
|
createdAt
|
|
updatedAt
|
|
name
|
|
indexWhereClause
|
|
indexType
|
|
isUnique
|
|
indexFieldMetadatas(paging: { first: 100 }) {
|
|
edges {
|
|
node {
|
|
id
|
|
createdAt
|
|
updatedAt
|
|
order
|
|
fieldMetadataId
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
fields(paging: { first: 1000 }, filter: $fieldFilter) {
|
|
edges {
|
|
node {
|
|
id
|
|
type
|
|
name
|
|
label
|
|
description
|
|
icon
|
|
isCustom
|
|
isActive
|
|
isSystem
|
|
isNullable
|
|
isUnique
|
|
createdAt
|
|
updatedAt
|
|
defaultValue
|
|
options
|
|
settings
|
|
isLabelSyncedWithName
|
|
relationDefinition {
|
|
relationId
|
|
direction
|
|
sourceObjectMetadata {
|
|
id
|
|
nameSingular
|
|
namePlural
|
|
}
|
|
sourceFieldMetadata {
|
|
id
|
|
name
|
|
}
|
|
targetObjectMetadata {
|
|
id
|
|
nameSingular
|
|
namePlural
|
|
}
|
|
targetFieldMetadata {
|
|
id
|
|
name
|
|
}
|
|
}
|
|
}
|
|
}
|
|
pageInfo {
|
|
hasNextPage
|
|
hasPreviousPage
|
|
startCursor
|
|
endCursor
|
|
}
|
|
}
|
|
}
|
|
}
|
|
pageInfo {
|
|
hasNextPage
|
|
hasPreviousPage
|
|
startCursor
|
|
endCursor
|
|
}
|
|
}
|
|
}
|
|
`;
|