-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
26 changed files
with
5,266 additions
and
2,688 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
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 |
---|---|---|
@@ -0,0 +1,16 @@ | ||
fragment Entity on Entity { | ||
id | ||
name | ||
kind { | ||
id | ||
label | ||
ontology { | ||
id | ||
name | ||
} | ||
} | ||
group { | ||
id | ||
name | ||
} | ||
} |
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 |
---|---|---|
@@ -0,0 +1,8 @@ | ||
fragment EntityKind on EntityKind { | ||
id | ||
label | ||
ontology { | ||
id | ||
name | ||
} | ||
} |
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 |
---|---|---|
@@ -0,0 +1,5 @@ | ||
fragment Experiment on Experiment { | ||
id | ||
name | ||
description | ||
} |
This file was deleted.
Oops, something went wrong.
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
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 |
---|---|---|
@@ -0,0 +1,4 @@ | ||
fragment Ontology on Ontology { | ||
id | ||
name | ||
} |
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 |
---|---|---|
@@ -0,0 +1,9 @@ | ||
fragment Protocol on Protocol { | ||
id | ||
name | ||
experiment { | ||
id | ||
name | ||
description | ||
} | ||
} |
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
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 |
---|---|---|
@@ -0,0 +1,17 @@ | ||
fragment Specimen on Specimen { | ||
id | ||
entity { | ||
id | ||
kind { | ||
id | ||
label | ||
} | ||
name | ||
group { | ||
id | ||
} | ||
} | ||
protocol { | ||
id | ||
} | ||
} |
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
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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 |
---|---|---|
@@ -0,0 +1,15 @@ | ||
query GetEntity($id: ID!) { | ||
entity(id: $id) { | ||
...Entity | ||
} | ||
} | ||
|
||
query SearchEntities($search: String, $values: [ID!]) { | ||
options: entities( | ||
filters: { search: $search, ids: $values } | ||
pagination: { limit: 10 } | ||
) { | ||
value: id | ||
label: name | ||
} | ||
} |
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 |
---|---|---|
@@ -0,0 +1,15 @@ | ||
query GetEntityKind($id: ID!) { | ||
entityKind(id: $id) { | ||
...EntityKind | ||
} | ||
} | ||
|
||
query SearchEntityKind($search: String, $values: [ID!]) { | ||
options: entityKinds( | ||
filters: { search: $search, ids: $values } | ||
pagination: { limit: 10 } | ||
) { | ||
value: id | ||
label: label | ||
} | ||
} |
This file was deleted.
Oops, something went wrong.
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 |
---|---|---|
@@ -0,0 +1,15 @@ | ||
query GetOntology($id: ID!) { | ||
ontology(id: $id) { | ||
...Ontology | ||
} | ||
} | ||
|
||
query SearchOntologies($search: String, $values: [ID!]) { | ||
options: ontologies( | ||
filters: { search: $search, ids: $values } | ||
pagination: { limit: 10 } | ||
) { | ||
value: id | ||
label: name | ||
} | ||
} |
Oops, something went wrong.