Skip to content

Commit

Permalink
Change filter genericscalartype into filtertype
Browse files Browse the repository at this point in the history
  • Loading branch information
sudan45 authored and AdityaKhatri committed Oct 16, 2024
1 parent c1cd2af commit 355a5f5
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion schema.graphql
Original file line number Diff line number Diff line change
Expand Up @@ -358,7 +358,6 @@ type AnalysisPillarType {
title: String!
mainStatement: String!
informationGap: String!
filters: GenericScalar
createdAt: DateTime!
modifiedAt: DateTime!
createdBy: UserType
Expand All @@ -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
Expand Down Expand Up @@ -4545,6 +4545,12 @@ input FileUploadInputType {
projects: [ID!]
}

type FilterDataType {
id: String
key: String
uniqueId: String
}

type GalleryFileType {
id: ID!
title: String!
Expand Down

0 comments on commit 355a5f5

Please sign in to comment.