Object

Extension

This describes an extension, could be custom or a BApp. BApps will have bapp_details.

Fields

id(): ID
The unique identifier of the extension.
uploaded_filename(): String!
The filename provided when the extension was uploaded.
name(): String!
description(): String!
The description of the extension.
uploaded_date(): Timestamp!
The date the extension was uploaded.
uploaded_by(): String
The user who uploaded the extension.
bapp_details(): BappDetails
The details of the extensions. Only present if the extension is a BApp.

Example

Query
query GetExtensions {
  extensions {
    id
    uploaded_filename
    name
    description
    uploaded_date
    uploaded_by
    bapp_details {
      bapp_uuid
      author
      version
    }
  }
}
Result
{
  "data": {
    "extensions": [
      {
        "id": null
        "uploaded_filename": null,
        "name": null,
        "description": null,
        "uploaded_date": null,
        "uploaded_by": null,
        "bapp_details": {
          "bapp_uuid": null,
          "author": null,
          "version": null
        }
      }
    ]
  }
}