diff --git a/apps/analysis/schema.py b/apps/analysis/schema.py index 20e6c36e78..3ae06c2a49 100644 --- a/apps/analysis/schema.py +++ b/apps/analysis/schema.py @@ -200,7 +200,7 @@ class Meta: ) assignee = graphene.Field(UserType, required=True) - analysis = graphene.ID(source='analysis_id', required=True) + analysis_id = graphene.ID(source='analysis_id', required=True) cloned_from = graphene.ID(source='cloned_from_id') analyzed_entries_count = graphene.Int(required=True) diff --git a/schema.graphql b/schema.graphql index 1a15a12bf0..baec0af657 100644 --- a/schema.graphql +++ b/schema.graphql @@ -345,7 +345,7 @@ type AnalysisPillarType { modifiedBy: UserType clientId: ID! assignee: UserType! - analysis: ID! + analysisId: ID! clonedFrom: ID analyzedEntriesCount: Int! statements: [AnalyticalStatementType!]