-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update associated_evidence_status_filter_type.rb enum descriptions
- Loading branch information
1 parent
888d44b
commit 0c618b7
Showing
1 changed file
with
4 additions
and
4 deletions.
There are no files selected for viewing
8 changes: 4 additions & 4 deletions
8
server/app/graphql/types/associated_evidence_status_filter_type.rb
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,12 @@ | ||
module Types | ||
class AssociatedEvidenceStatusFilterType < Types::BaseEnum | ||
value 'WITH_ACCEPTED', | ||
description: 'Display only molecular profiles which have at least one accepted evidence item.' | ||
description: 'Apply filter to an entity to display only those which have at least one accepted associated evidence item.' | ||
value 'WITH_ACCEPTED_OR_SUBMITTED', | ||
description: 'Display only molecular profiles which have evidence in either an accepted or submitted state.' | ||
description: 'Apply filter to an entity to display only those which have at least one accepted or submitted associated evidence item.' | ||
value 'WITH_SUBMITTED', | ||
description: 'Display molecular profiles which have at least one submitted evidence item.' | ||
description: 'Apply filter to an entity to display only those which have at least one submitted associated evidence item.' | ||
value 'ALL', | ||
description: 'Display all molecular profiles regardless of attached evidence status.' | ||
description: 'Apply no status filter to an entity in order to display all entities regardless of attached evidence status.' | ||
end | ||
end |