* fix: typo * feat: expose foreign key * fix: foreign key exposition * fix: be able to filter by foreign key * feat: add `isSystem` on field metadata * feat: update all seeds * fix: seed issues * fix: sync metadata generated files * fix: squash metadata migrations * Fix conflicts --------- Co-authored-by: Charles Bochet <charles@twenty.com>
93 lines
2.2 KiB
TypeScript
93 lines
2.2 KiB
TypeScript
import { gql } from '@apollo/client';
|
|
|
|
export const FIND_MANY_METADATA_OBJECTS = gql`
|
|
query ObjectMetadataItems(
|
|
$objectFilter: objectFilter
|
|
$fieldFilter: fieldFilter
|
|
) {
|
|
objects(paging: { first: 1000 }, filter: $objectFilter) {
|
|
edges {
|
|
node {
|
|
id
|
|
dataSourceId
|
|
nameSingular
|
|
namePlural
|
|
labelSingular
|
|
labelPlural
|
|
description
|
|
icon
|
|
isCustom
|
|
isActive
|
|
isSystem
|
|
createdAt
|
|
updatedAt
|
|
fields(paging: { first: 1000 }, filter: $fieldFilter) {
|
|
edges {
|
|
node {
|
|
id
|
|
type
|
|
name
|
|
label
|
|
description
|
|
icon
|
|
isCustom
|
|
isActive
|
|
isSystem
|
|
isNullable
|
|
createdAt
|
|
updatedAt
|
|
fromRelationMetadata {
|
|
id
|
|
relationType
|
|
toObjectMetadata {
|
|
id
|
|
dataSourceId
|
|
nameSingular
|
|
namePlural
|
|
}
|
|
fromObjectMetadata {
|
|
id
|
|
dataSourceId
|
|
nameSingular
|
|
namePlural
|
|
}
|
|
}
|
|
toRelationMetadata {
|
|
id
|
|
relationType
|
|
toObjectMetadata {
|
|
id
|
|
dataSourceId
|
|
nameSingular
|
|
namePlural
|
|
}
|
|
fromObjectMetadata {
|
|
id
|
|
dataSourceId
|
|
nameSingular
|
|
namePlural
|
|
}
|
|
}
|
|
}
|
|
}
|
|
pageInfo {
|
|
hasNextPage
|
|
hasPreviousPage
|
|
startCursor
|
|
endCursor
|
|
}
|
|
totalCount
|
|
}
|
|
}
|
|
}
|
|
pageInfo {
|
|
hasNextPage
|
|
hasPreviousPage
|
|
startCursor
|
|
endCursor
|
|
}
|
|
totalCount
|
|
}
|
|
}
|
|
`;
|