From 355a5f5b232bbaa1c9c4ff9f8b4ff9d9cc72ae0b Mon Sep 17 00:00:00 2001 From: sudan45 Date: Tue, 1 Oct 2024 15:02:00 +0545 Subject: [PATCH] Change filter genericscalartype into filtertype --- schema.graphql | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/schema.graphql b/schema.graphql index a0f3ee8547..b955069d97 100644 --- a/schema.graphql +++ b/schema.graphql @@ -358,7 +358,6 @@ type AnalysisPillarType { title: String! mainStatement: String! informationGap: String! - filters: GenericScalar createdAt: DateTime! modifiedAt: DateTime! createdBy: UserType @@ -368,6 +367,7 @@ type AnalysisPillarType { analysisId: ID! clonedFrom: ID analyzedEntriesCount: Int! + filters: [FilterDataType!] statements: [AnalyticalStatementType!] discardedEntries(tags: [DiscardedEntryTagTypeEnum!], page: Int = 1, ordering: String, pageSize: Int): AnalysisPillarDiscardedEntryListType entries(id: ID, excerpt: String, controlled: Boolean, createdAt: DateTime, createdAtGte: DateTime, createdAtLte: DateTime, modifiedAt: DateTime, modifiedAtGte: DateTime, modifiedAtLte: DateTime, createdBy: [ID!], modifiedBy: [ID!], leads: [ID!], leadCreatedBy: [ID!], leadPublishedOn: Date, leadPublishedOnGte: Date, leadPublishedOnLte: Date, leadTitle: String, leadAssignees: [ID!], leadStatuses: [LeadStatusEnum!], leadPriorities: [LeadPriorityEnum!], leadConfidentialities: [LeadConfidentialityEnum!], leadAuthoringOrganizationTypes: [ID!], leadAuthorOrganizations: [ID!], leadSourceOrganizations: [ID!], leadHasAssessment: Boolean, leadIsAssessment: Boolean, search: String, entryTypes: [EntryTagTypeEnum!], projectEntryLabels: [ID!], entriesId: [ID!], geoCustomShape: String, leadGroupLabel: String, filterableData: [EntryFilterDataInputType!], hasComment: Boolean, isVerified: Boolean, discarded: Boolean, excludeEntries: [ID!], page: Int = 1, ordering: String, pageSize: Int): AnalysisPillarEntryListType @@ -4545,6 +4545,12 @@ input FileUploadInputType { projects: [ID!] } +type FilterDataType { + id: String + key: String + uniqueId: String +} + type GalleryFileType { id: ID! title: String!