Hi @forstmeier,
Can you provide more information on how you were using the “interface” query ?
Interfaces in Graphql are useful when you want to return an object or set of objects, but those might be of several different types. By creating an Org interface and implementing it in StorageOrg and LabOrg, three graphql queries will be generated, queryOrg, queryStorageOrg, queryLabOrg.
In case you use the queryOrg query as follows,
query{
queryOrg{
id
... // Any other predicates present in Org
}
}
you should be able to get a list of all nodes which have type LabOrg or StorageOrg or any of the types which impelement interface Org .