Skip to content

Commit

Permalink
undo comment deletions
Browse files Browse the repository at this point in the history
  • Loading branch information
abrantesarthur committed Oct 16, 2023
1 parent bd9f422 commit 6bb32ac
Show file tree
Hide file tree
Showing 9 changed files with 26 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/graphql/gqls/action.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@ export const ACTIONS = gql`
actions(
first: $first
offset: $offset
# TODO: https://transcend.height.app/T-27909 - enable optimizations
# isExportCsv: true
useMaster: false
# TODO: https://transcend.height.app/T-27909 - order by createdAt
orderBy: [{ field: type, direction: ASC }]
Expand Down
2 changes: 2 additions & 0 deletions src/graphql/gqls/apiKey.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@ export const API_KEYS = gql`
first: $first
offset: $offset
filterBy: { titles: $titles }
# TODO: https://transcend.height.app/T-27909 - enable optimizations
# isExportCsv: true
useMaster: false
orderBy: [
{ field: createdAt, direction: ASC }
Expand Down
4 changes: 4 additions & 0 deletions src/graphql/gqls/assessment.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,8 @@ export const ASSESSMENTS = gql`
) {
assessments(
first: $first
# TODO: https://transcend.height.app/T-27909 - enable optimizations
# isExportCsv: true
useMaster: false
# TODO: https://transcend.height.app/T-27909 - order by createdAt
# orderBy: [{ field: title, direction: ASC }]
Expand Down Expand Up @@ -53,6 +55,8 @@ export const ASSESSMENT_TEMPLATES = gql`
query TranscendCliAssessmentTEmplates($first: Int!, $offset: Int!) {
assessmentTemplates(
first: $first
# TODO: https://transcend.height.app/T-27909 - enable optimizations
# isExportCsv: true
useMaster: false
# TODO: https://transcend.height.app/T-27909 - order by createdAt
# orderBy: [{ field: title, direction: ASC }]
Expand Down
4 changes: 4 additions & 0 deletions src/graphql/gqls/attribute.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,8 @@ const ENABLED_ON_CREATE_INPUT = Object.values(ATTRIBUTE_KEY_TO_ENABLED_ON)
.join('\n');

// TODO: https://transcend.height.app/T-27909 - order by createdAt
// # TODO: https://transcend.height.app/T-27909 - enable optimizations
// # isExportCsv: true
export const ATTRIBUTES = gql`
query TranscendCliAttributes($first: Int!, $offset: Int!) {
attributeKeys(first: $first, offset: $offset, useMaster: false) {
Expand Down Expand Up @@ -51,6 +53,8 @@ export const ATTRIBUTE_VALUES = gql`
attributeValues(
first: $first
offset: $offset
# TODO: https://transcend.height.app/T-27909 - enable optimizations
# isExportCsv: true
useMaster: false
filterBy: { attributeKeys: [$attributeKeyId] }
) {
Expand Down
2 changes: 2 additions & 0 deletions src/graphql/gqls/attributeKey.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@ export const ATTRIBUTE_KEYS_REQUESTS = gql`
attributeKeys(
filterBy: { enabledOnRequests: true }
first: $first
# TODO: https://transcend.height.app/T-27909 - enable optimizations
# isExportCsv: true
useMaster: false
# TODO: https://transcend.height.app/T-27909 - order by createdAt
offset: $offset
Expand Down
2 changes: 2 additions & 0 deletions src/graphql/gqls/businessEntity.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,8 @@ export const BUSINESS_ENTITIES = gql`
{ field: createdAt, direction: ASC }
{ field: title, direction: ASC }
]
# TODO: https://transcend.height.app/T-27909 - enable optimizations
# isExportCsv: true
useMaster: false
) {
nodes {
Expand Down
2 changes: 2 additions & 0 deletions src/graphql/gqls/catalog.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
import { gql } from 'graphql-request';

// TODO: https://transcend.height.app/T-27909 - order by createdAt
// # TODO: https://transcend.height.app/T-27909 - enable optimizations
// # isExportCsv: true
export const CATALOGS = gql`
query TranscendCliCatalogs($first: Int!, $offset: Int!) {
catalogs(first: $first, offset: $offset, filterBy: {}, useMaster: false) {
Expand Down
6 changes: 6 additions & 0 deletions src/graphql/gqls/consentManager.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,8 @@ export const PURPOSES = gql`
`;

// TODO: https://transcend.height.app/T-27909 - order by createdAt
// # TODO: https://transcend.height.app/T-27909 - enable optimizations
// # isExportCsv: true
export const EXPERIENCES = gql`
query TranscendCliExperiences($first: Int!, $offset: Int!) {
experiences(first: $first, offset: $offset, useMaster: false) {
Expand Down Expand Up @@ -110,6 +112,8 @@ export const DATA_FLOWS = gql`
{ field: createdAt, direction: ASC }
{ field: value, direction: ASC }
]
# TODO: https://transcend.height.app/T-27909 - enable optimizations
# isExportCsv: true
useMaster: false
) {
nodes {
Expand Down Expand Up @@ -156,6 +160,8 @@ export const COOKIES = gql`
{ field: createdAt, direction: ASC }
{ field: name, direction: ASC }
]
# TODO: https://transcend.height.app/T-27909 - enable optimizations
# isExportCsv: true
useMaster: false
) {
nodes {
Expand Down
2 changes: 2 additions & 0 deletions src/graphql/gqls/dataPoint.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,8 @@ export const DATA_POINTS = gql`
filterBy: { dataSilos: $dataSiloIds }
first: $first
offset: $offset
# TODO: https://transcend.height.app/T-27909 - enable optimizations
# isExportCsv: true
useMaster: false
orderBy: [
{ field: createdAt, direction: ASC }
Expand Down

0 comments on commit 6bb32ac

Please sign in to comment.