Skip to content

Commit

Permalink
Rename analyis field into analysis_id
Browse files Browse the repository at this point in the history
  • Loading branch information
barshathakuri committed Jul 29, 2024
1 parent b3ea86f commit db630f4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion apps/analysis/schema.py
Original file line number Diff line number Diff line change
Expand Up @@ -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)

Expand Down
2 changes: 1 addition & 1 deletion schema.graphql
Original file line number Diff line number Diff line change
Expand Up @@ -345,7 +345,7 @@ type AnalysisPillarType {
modifiedBy: UserType
clientId: ID!
assignee: UserType!
analysis: ID!
analysisId: ID!
clonedFrom: ID
analyzedEntriesCount: Int!
statements: [AnalyticalStatementType!]
Expand Down

0 comments on commit db630f4

Please sign in to comment.