Roadmap

Retrieve single aspect by its type

Currently, the GraphQL schema has a method to retrieve all aspects as a list:

    """
    Experimental API.
    For fetching extra entities that do not have custom UI code yet
    """
    aspects(input: AspectParams): [RawAspect!]

Link to Git

It would be super useful if we could retrieve a single aspect by its key/unique identifier (type?).
Some thing like:

aspect(type: String!): RawAspect

This would allow us to query specific aspect and map/name them to well defined properties in the data model.