Got the first part on mapping the ids to the type names. It is here <http://orientdb.com/docs/last/Types.html> . Any help with the query?
On Saturday, February 27, 2016 at 6:39:18 PM UTC, [email protected] wrote: > > Yes. That is what I'm looking for. > > The type on the property is a number. Where do I get what they correspond > to? > > Can you help with a query that gets all properties with the class name? > I'm getting the error that projections are not allowed with flatten() and > expand() operators. > > Query is > select name, type from (select expand(properties), name as klassName from > (select expand(classes) from metadata:schema)) > > > > I want to get the properties and the class they belong. > > > > On Saturday, February 27, 2016 at 3:48:04 PM UTC, Luca Son wrote: > >> Hi, >> >> in OSQL you can use this query: >> >> select expand(classes) from metadata:schema >> >> that retrieves the informations about the schema classes. >> >> Hope it helps >> >> Luca >> > -- --- You received this message because you are subscribed to the Google Groups "OrientDB" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. For more options, visit https://groups.google.com/d/optout.
