You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
There are cases where Goo objects may need to reference attributes that exist on other Goo objects, generally when you have a container object (Ontology) and related objects (OntologySubmission). For example, when serializing OntologySubmission you want to display the acronym, groups, etc which only exist on the Ontology object.
Here's a sample syntax
classOntologyattribute:acronym,:unique=>trueattribute:creatorendclassOntologySubmissionattribute:submissionId,:unique=>trueattribute:ontology,:instance_of=>{:with=>:ontology}# Defaultalias_attribute:acronym,:instance_of=>{:with=>:ontology}# Change the attribute namealias_attribute:author:instance_of=>{:with=>:ontology,:attribute=>:creator}end
Not sure if this should support read/write or just read
The text was updated successfully, but these errors were encountered:
There are cases where Goo objects may need to reference attributes that exist on other Goo objects, generally when you have a container object (Ontology) and related objects (OntologySubmission). For example, when serializing OntologySubmission you want to display the acronym, groups, etc which only exist on the Ontology object.
Here's a sample syntax
Not sure if this should support read/write or just read
The text was updated successfully, but these errors were encountered: