Mutation

get_bapp_details

Get information about a BApp without adding it to the list of usable extensions.

Arguments

input: UploadBappInput!

The file from which to parse the extension's details.


Input Fields

extension_filename(): String!
The original name of the extension file.
extension_file_as_base_64(): String!
The contents of the extension as base64-encoded.

Return Fields

extension(): Extension!
The uploaded extension.

Example

Query
mutation GetBappDetails($input: UploadBappInput!) {
  get_bapp_details(input: $input) {
    extension {
      id
      uploaded_filename
      name
      description
      uploaded_date
      uploaded_by
      bapp_details {
        bapp_uuid
        author
        version
      }
    }
  }
}
Variables
{
  "input": {
    "extension_filename": "test-bapp.bapp",
    "extension_file_as_base_64": "UEsDBBQAAAAIAJBp ... snip ... AADGFAAAAAA="
  }
}