Object

TrelloCard

A Trello card that is linked to an issue found by a scan.

Fields

id(): ID!
An identifier for the Trello card.
card_details(): TrelloCardDetails
The details of the Trello card.

Example

Query
query GetTrelloCard($scanId: ID!, $serialNumber: ID!) {
  issue (scan_id: $scanId, serial_number: $serialNumber) {
    tickets {
        trello_card {
            id
            card_details {
               title
               board_name
               list_name
            }
        }
        link_url
        link_id
        date_added
    }
  }
}
Variables
{
  "scanId": "2",
  "serialNumber": "314276827364273645"
}
Result
{
  "data": {
    "issue": {
      "tickets": [
        {
          "trello_card": {
            "id": null,
            "card_details": {
              "title": null,
              "board_name": null,
              "list_name": null
            }
          },
          "link_url": null,
          "link_id": null,
          "date_added": null
        }
      ]
    }
  }
}