Looking for a query for getting all kind of Documents who inherit a specific Schema

Hi,

I have many documents who inherit a Schema and i want to perform a query for getting all the Documents who inherit this Schema.

It's possible ?

I tried “SELECT * FROM SPECIFICSCHEMA” but it's doesn't work.

Thanks.

0 votes

1 answers

1706 views

ANSWER



It's not possible directly. You can only query on document types, not individual schemas. You could have a document type that includes this schema then have your other document types extend it.

0 votes