Deianira GraphQL API

Deianira GraphQL API

Contact

Support

support@asterias.io

API Endpoints
https://uat.asterias.io/graphql
Headers
# The access token. Must be included in all API calls.
Authorization: Bearer <YOUR_TOKEN_HERE>
Version

1.0.0

Queries

adjustmentCompanies

Description

Get a list of Companies/Organisations added to the Adjustment

Arguments
Name Description
filters - AdjustmentCompanyQueryFilters! The filters to apply
limit - Int! The maximum number of items to return per page. The maximum value is 100. Default = 10
page - Int! The page number to retrieve. Default = 1

Example

Query
query adjustmentCompanies(
  $filters: AdjustmentCompanyQueryFilters!,
  $limit: Int!,
  $page: Int!
) {
  adjustmentCompanies(
    filters: $filters,
    limit: $limit,
    page: $page
  ) {
    count
    data {
      ...AdjustmentCompanyFragment
    }
    page
    totalCount
    totalPages
  }
}
Variables
{
  "filters": AdjustmentCompanyQueryFilters,
  "limit": 10,
  "page": 1
}
Response
{
  "data": {
    "adjustmentCompanies": {
      "count": 123,
      "data": [AdjustmentCompany],
      "page": 987,
      "totalCount": 987,
      "totalPages": 123
    }
  }
}

adjustmentCostExpensePaymentHistory

Description

Get the history of an Adjustment Cost & Expense Payment/Disbursement

Arguments
Name Description
id - String! The id of the Adjustment
paymentId - String! The id of the Payment/Disbursement

Example

Query
query adjustmentCostExpensePaymentHistory(
  $id: String!,
  $paymentId: String!
) {
  adjustmentCostExpensePaymentHistory(
    id: $id,
    paymentId: $paymentId
  ) {
    amount {
      ...DenominationFragment
    }
    coverage
    dateOfChange
    dateOfPayment
    id
    legalEntity {
      ... on AdjustmentCompany {
        ...AdjustmentCompanyFragment
      }
      ... on AdjustmentIndividual {
        ...AdjustmentIndividualFragment
      }
    }
    narrative
    reportingAmount {
      ...DenominationFragment
    }
    revision
    user {
      ...UserFragment
    }
  }
}
Variables
{
  "id": "abc123",
  "paymentId": "xyz789"
}
Response
{
  "data": {
    "adjustmentCostExpensePaymentHistory": [
      {
        "amount": Denomination,
        "coverage": "bail_guarantee",
        "dateOfChange": "2007-12-03T10:15:30Z",
        "dateOfPayment": "2007-12-03T10:15:30Z",
        "id": "xyz789",
        "legalEntity": AdjustmentCompany,
        "narrative": {},
        "reportingAmount": Denomination,
        "revision": 123,
        "user": User
      }
    ]
  }
}

adjustmentCostExpensePayments

Description

Get a list of Adjustment Cost & Expense Payments/Disbursements

Arguments
Name Description
filters - AdjustmentCostsExpensesPaymentQueryFilters! The filters to apply
limit - Int! The maximum number of items to return per page. The maximum value is 100. Default = 10
page - Int! The page number to retrieve. Default = 1

Example

Query
query adjustmentCostExpensePayments(
  $filters: AdjustmentCostsExpensesPaymentQueryFilters!,
  $limit: Int!,
  $page: Int!
) {
  adjustmentCostExpensePayments(
    filters: $filters,
    limit: $limit,
    page: $page
  ) {
    count
    data {
      ...AdjustmentCostExpensePaymentFragment
    }
    page
    totalCount
    totalPages
  }
}
Variables
{
  "filters": AdjustmentCostsExpensesPaymentQueryFilters,
  "limit": 10,
  "page": 1
}
Response
{
  "data": {
    "adjustmentCostExpensePayments": {
      "count": 123,
      "data": [AdjustmentCostExpensePayment],
      "page": 123,
      "totalCount": 123,
      "totalPages": 987
    }
  }
}

adjustmentCostExpenseReserveHistory

Description

Get the history of an Adjustment Cost & Expense Reserve

Arguments
Name Description
id - String! The id of the Adjustment
reserveId - String! The id of the Reserve

Example

Query
query adjustmentCostExpenseReserveHistory(
  $id: String!,
  $reserveId: String!
) {
  adjustmentCostExpenseReserveHistory(
    id: $id,
    reserveId: $reserveId
  ) {
    amount {
      ...DenominationFragment
    }
    coverage
    dateOfChange
    id
    legalEntity {
      ... on AdjustmentCompany {
        ...AdjustmentCompanyFragment
      }
      ... on AdjustmentIndividual {
        ...AdjustmentIndividualFragment
      }
    }
    narrative
    reportingAmount {
      ...DenominationFragment
    }
    revision
    user {
      ...UserFragment
    }
  }
}
Variables
{
  "id": "abc123",
  "reserveId": "xyz789"
}
Response
{
  "data": {
    "adjustmentCostExpenseReserveHistory": [
      {
        "amount": Denomination,
        "coverage": "bail_guarantee",
        "dateOfChange": "2007-12-03T10:15:30Z",
        "id": "abc123",
        "legalEntity": AdjustmentCompany,
        "narrative": {},
        "reportingAmount": Denomination,
        "revision": 123,
        "user": User
      }
    ]
  }
}

adjustmentCostExpenseReserves

Description

Get a list of Adjustment Costs & Expense Reserves

Arguments
Name Description
filters - AdjustmentCostsExpensesReserveQueryFilters! The filters to apply
limit - Int! The maximum number of items to return per page. The maximum value is 100. Default = 10
page - Int! The page number to retrieve. Default = 1

Example

Query
query adjustmentCostExpenseReserves(
  $filters: AdjustmentCostsExpensesReserveQueryFilters!,
  $limit: Int!,
  $page: Int!
) {
  adjustmentCostExpenseReserves(
    filters: $filters,
    limit: $limit,
    page: $page
  ) {
    count
    data {
      ...AdjustmentCostExpenseReserveFragment
    }
    page
    totalCount
    totalPages
  }
}
Variables
{
  "filters": AdjustmentCostsExpensesReserveQueryFilters,
  "limit": 10,
  "page": 1
}
Response
{
  "data": {
    "adjustmentCostExpenseReserves": {
      "count": 987,
      "data": [AdjustmentCostExpenseReserve],
      "page": 123,
      "totalCount": 987,
      "totalPages": 987
    }
  }
}

adjustmentFeePaymentHistory

Description

Get the history of an Adjustment Fee Payment/Disbursement

Response

Returns [AdjustmentFeePayment!]!

Arguments
Name Description
id - String! The id of the Adjustment
paymentId - String! The id of the Payment/Disbursement

Example

Query
query adjustmentFeePaymentHistory(
  $id: String!,
  $paymentId: String!
) {
  adjustmentFeePaymentHistory(
    id: $id,
    paymentId: $paymentId
  ) {
    allocation
    amount {
      ...DenominationFragment
    }
    dateOfChange
    dateOfPayment
    id
    legalEntity {
      ... on AdjustmentCompany {
        ...AdjustmentCompanyFragment
      }
      ... on AdjustmentIndividual {
        ...AdjustmentIndividualFragment
      }
    }
    narrative
    reportingAmount {
      ...DenominationFragment
    }
    revision
    user {
      ...UserFragment
    }
  }
}
Variables
{
  "id": "abc123",
  "paymentId": "xyz789"
}
Response
{
  "data": {
    "adjustmentFeePaymentHistory": [
      {
        "allocation": "correspondent",
        "amount": Denomination,
        "dateOfChange": "2007-12-03T10:15:30Z",
        "dateOfPayment": "2007-12-03T10:15:30Z",
        "id": "abc123",
        "legalEntity": AdjustmentCompany,
        "narrative": {},
        "reportingAmount": Denomination,
        "revision": 987,
        "user": User
      }
    ]
  }
}

adjustmentFeePayments

Description

Get a list of Adjustment Fee Payments/Disbursements

Arguments
Name Description
filters - AdjustmentFeesPaymentQueryFilters! The filters to apply
limit - Int! The maximum number of items to return per page. The maximum value is 100. Default = 10
page - Int! The page number to retrieve. Default = 1

Example

Query
query adjustmentFeePayments(
  $filters: AdjustmentFeesPaymentQueryFilters!,
  $limit: Int!,
  $page: Int!
) {
  adjustmentFeePayments(
    filters: $filters,
    limit: $limit,
    page: $page
  ) {
    count
    data {
      ...AdjustmentFeePaymentFragment
    }
    page
    totalCount
    totalPages
  }
}
Variables
{
  "filters": AdjustmentFeesPaymentQueryFilters,
  "limit": 10,
  "page": 1
}
Response
{
  "data": {
    "adjustmentFeePayments": {
      "count": 987,
      "data": [AdjustmentFeePayment],
      "page": 987,
      "totalCount": 123,
      "totalPages": 987
    }
  }
}

adjustmentFeeReserveHistory

Description

Get the history of an Adjustment Fee Reserve

Response

Returns [AdjustmentFeeReserve!]!

Arguments
Name Description
id - String! The id of the Adjustment
reserveId - String! The id of the Reserve

Example

Query
query adjustmentFeeReserveHistory(
  $id: String!,
  $reserveId: String!
) {
  adjustmentFeeReserveHistory(
    id: $id,
    reserveId: $reserveId
  ) {
    allocation
    amount {
      ...DenominationFragment
    }
    dateOfChange
    id
    legalEntity {
      ... on AdjustmentCompany {
        ...AdjustmentCompanyFragment
      }
      ... on AdjustmentIndividual {
        ...AdjustmentIndividualFragment
      }
    }
    narrative
    reportingAmount {
      ...DenominationFragment
    }
    revision
    user {
      ...UserFragment
    }
  }
}
Variables
{
  "id": "xyz789",
  "reserveId": "abc123"
}
Response
{
  "data": {
    "adjustmentFeeReserveHistory": [
      {
        "allocation": "correspondent",
        "amount": Denomination,
        "dateOfChange": "2007-12-03T10:15:30Z",
        "id": "xyz789",
        "legalEntity": AdjustmentCompany,
        "narrative": {},
        "reportingAmount": Denomination,
        "revision": 987,
        "user": User
      }
    ]
  }
}

adjustmentFeeReserves

Description

Get a list of Adjustment Fee Reserves

Arguments
Name Description
filters - AdjustmentFeesReserveQueryFilters! The filters to apply
limit - Int! The maximum number of items to return per page. The maximum value is 100. Default = 10
page - Int! The page number to retrieve. Default = 1

Example

Query
query adjustmentFeeReserves(
  $filters: AdjustmentFeesReserveQueryFilters!,
  $limit: Int!,
  $page: Int!
) {
  adjustmentFeeReserves(
    filters: $filters,
    limit: $limit,
    page: $page
  ) {
    count
    data {
      ...AdjustmentFeeReserveFragment
    }
    page
    totalCount
    totalPages
  }
}
Variables
{
  "filters": AdjustmentFeesReserveQueryFilters,
  "limit": 10,
  "page": 1
}
Response
{
  "data": {
    "adjustmentFeeReserves": {
      "count": 987,
      "data": [AdjustmentFeeReserve],
      "page": 987,
      "totalCount": 987,
      "totalPages": 987
    }
  }
}

adjustmentIndemnityPaymentHistory

Description

Get the history of an Adjustment Indemnity Payment/Disbursement

Arguments
Name Description
id - String! The id of the Adjustment
paymentId - String! The id of the Payment/Disbursement

Example

Query
query adjustmentIndemnityPaymentHistory(
  $id: String!,
  $paymentId: String!
) {
  adjustmentIndemnityPaymentHistory(
    id: $id,
    paymentId: $paymentId
  ) {
    airframe {
      ...AdjustmentAirframeFragment
    }
    allocation
    amount {
      ...DenominationFragment
    }
    category
    coverage
    dateOfChange
    dateOfPayment
    id
    legalEntity {
      ... on AdjustmentCompany {
        ...AdjustmentCompanyFragment
      }
      ... on AdjustmentIndividual {
        ...AdjustmentIndividualFragment
      }
    }
    narrative
    reportingAmount {
      ...DenominationFragment
    }
    revision
    user {
      ...UserFragment
    }
  }
}
Variables
{
  "id": "abc123",
  "paymentId": "abc123"
}
Response
{
  "data": {
    "adjustmentIndemnityPaymentHistory": [
      {
        "airframe": AdjustmentAirframe,
        "allocation": "advance_payment",
        "amount": Denomination,
        "category": "aircraft_hull",
        "coverage": "aircraft_hull",
        "dateOfChange": "2007-12-03T10:15:30Z",
        "dateOfPayment": "2007-12-03T10:15:30Z",
        "id": "xyz789",
        "legalEntity": AdjustmentCompany,
        "narrative": {},
        "reportingAmount": Denomination,
        "revision": 123,
        "user": User
      }
    ]
  }
}

adjustmentIndemnityPayments

Description

Get a list of Adjustment Indemnity Payments/Disbursements

Arguments
Name Description
filters - AdjustmentIndemnityPaymentQueryFilters! The filters to apply
limit - Int! The maximum number of items to return per page. The maximum value is 100. Default = 10
page - Int! The page number to retrieve. Default = 1

Example

Query
query adjustmentIndemnityPayments(
  $filters: AdjustmentIndemnityPaymentQueryFilters!,
  $limit: Int!,
  $page: Int!
) {
  adjustmentIndemnityPayments(
    filters: $filters,
    limit: $limit,
    page: $page
  ) {
    count
    data {
      ...AdjustmentIndemnityPaymentFragment
    }
    page
    totalCount
    totalPages
  }
}
Variables
{
  "filters": AdjustmentIndemnityPaymentQueryFilters,
  "limit": 10,
  "page": 1
}
Response
{
  "data": {
    "adjustmentIndemnityPayments": {
      "count": 987,
      "data": [AdjustmentIndemnityPayment],
      "page": 123,
      "totalCount": 987,
      "totalPages": 123
    }
  }
}

adjustmentIndemnityReserveHistory

Description

Get the history of an Adjustment Indemnity Reserve

Arguments
Name Description
id - String! The id of the Adjustment
reserveId - String! The id of the Reserve

Example

Query
query adjustmentIndemnityReserveHistory(
  $id: String!,
  $reserveId: String!
) {
  adjustmentIndemnityReserveHistory(
    id: $id,
    reserveId: $reserveId
  ) {
    airframe {
      ...AdjustmentAirframeFragment
    }
    allocation
    amount {
      ...DenominationFragment
    }
    category
    coverage
    dateOfChange
    id
    legalEntity {
      ... on AdjustmentCompany {
        ...AdjustmentCompanyFragment
      }
      ... on AdjustmentIndividual {
        ...AdjustmentIndividualFragment
      }
    }
    narrative
    reportingAmount {
      ...DenominationFragment
    }
    revision
    user {
      ...UserFragment
    }
  }
}
Variables
{
  "id": "xyz789",
  "reserveId": "abc123"
}
Response
{
  "data": {
    "adjustmentIndemnityReserveHistory": [
      {
        "airframe": AdjustmentAirframe,
        "allocation": "advance_payment",
        "amount": Denomination,
        "category": "aircraft_hull",
        "coverage": "aircraft_hull",
        "dateOfChange": "2007-12-03T10:15:30Z",
        "id": "xyz789",
        "legalEntity": AdjustmentCompany,
        "narrative": {},
        "reportingAmount": Denomination,
        "revision": 987,
        "user": User
      }
    ]
  }
}

adjustmentIndemnityReserves

Description

Get a list of Adjustment Indemnity Reserves

Arguments
Name Description
filters - AdjustmentIndemnityReserveQueryFilters! The filters to apply
limit - Int! The maximum number of items to return per page. The maximum value is 100. Default = 10
page - Int! The page number to retrieve. Default = 1

Example

Query
query adjustmentIndemnityReserves(
  $filters: AdjustmentIndemnityReserveQueryFilters!,
  $limit: Int!,
  $page: Int!
) {
  adjustmentIndemnityReserves(
    filters: $filters,
    limit: $limit,
    page: $page
  ) {
    count
    data {
      ...AdjustmentIndemnityReserveFragment
    }
    page
    totalCount
    totalPages
  }
}
Variables
{
  "filters": AdjustmentIndemnityReserveQueryFilters,
  "limit": 10,
  "page": 1
}
Response
{
  "data": {
    "adjustmentIndemnityReserves": {
      "count": 987,
      "data": [AdjustmentIndemnityReserve],
      "page": 123,
      "totalCount": 123,
      "totalPages": 123
    }
  }
}

adjustmentIndividuals

Description

Get Individuals added to the Adjustment

Arguments
Name Description
filters - AdjustmentIndividualQueryFilters! The filters to apply
limit - Int! The maximum number of items to return per page. The maximum value is 100. Default = 10
page - Int! The page number to retrieve. Default = 1

Example

Query
query adjustmentIndividuals(
  $filters: AdjustmentIndividualQueryFilters!,
  $limit: Int!,
  $page: Int!
) {
  adjustmentIndividuals(
    filters: $filters,
    limit: $limit,
    page: $page
  ) {
    count
    data {
      ...AdjustmentIndividualFragment
    }
    page
    totalCount
    totalPages
  }
}
Variables
{
  "filters": AdjustmentIndividualQueryFilters,
  "limit": 10,
  "page": 1
}
Response
{
  "data": {
    "adjustmentIndividuals": {
      "count": 123,
      "data": [AdjustmentIndividual],
      "page": 123,
      "totalCount": 987,
      "totalPages": 123
    }
  }
}

adjustments

Description

Get a list of Adjustment

Response

Returns an OffsetPaginatedAdjustments!

Arguments
Name Description
filters - AdjustmentQueryFilters
limit - Int! The maximum number of items to return per page. The maximum value is 100. Default = 10
page - Int! The page number to retrieve. Default = 1
sorting - AdjustmentQuerySorting

Example

Query
query adjustments(
  $filters: AdjustmentQueryFilters,
  $limit: Int!,
  $page: Int!,
  $sorting: AdjustmentQuerySorting
) {
  adjustments(
    filters: $filters,
    limit: $limit,
    page: $page,
    sorting: $sorting
  ) {
    count
    data {
      ...AdjustmentFragment
    }
    page
    totalCount
    totalPages
  }
}
Variables
{
  "filters": AdjustmentQueryFilters,
  "limit": 10,
  "page": 1,
  "sorting": AdjustmentQuerySorting
}
Response
{
  "data": {
    "adjustments": {
      "count": 123,
      "data": [Adjustment],
      "page": 123,
      "totalCount": 987,
      "totalPages": 987
    }
  }
}

aerodromes

Description

Get a list of Aerodromes

Response

Returns [Aerodrome!]!

Arguments
Name Description
ids - [AerodromeQuery!]! List of Aerodromes ids to query

Example

Query
query aerodromes($ids: [AerodromeQuery!]!) {
  aerodromes(ids: $ids) {
    country {
      ...CountryFragment
    }
    elevation
    iataCode
    icaoCode
    id
    latitude
    longitude
    name
    runways {
      ...RunwayFragment
    }
    subdivision {
      ...SubdivisionFragment
    }
    timeZone
    type {
      ...AerodromeTypeFragment
    }
  }
}
Variables
{"ids": [AerodromeQuery]}
Response
{
  "data": {
    "aerodromes": [
      {
        "country": Country,
        "elevation": 123,
        "iataCode": "xyz789",
        "icaoCode": "abc123",
        "id": 987,
        "latitude": Decimal,
        "longitude": Decimal,
        "name": "xyz789",
        "runways": [Runway],
        "subdivision": Subdivision,
        "timeZone": "xyz789",
        "type": AerodromeType
      }
    ]
  }
}

airCarriers

Description

Get a list of Air Carriers/Operators

Response

Returns [AirCarrier!]!

Arguments
Name Description
ids - [AirCarrierQuery!]! List of Air Carrier/Operator ids to query

Example

Query
query airCarriers($ids: [AirCarrierQuery!]!) {
  airCarriers(ids: $ids) {
    callsigns
    countries {
      ...CountryFragment
    }
    iata
    icao
    id
    names
  }
}
Variables
{"ids": [AirCarrierQuery]}
Response
{
  "data": {
    "airCarriers": [
      {
        "callsigns": ["xyz789"],
        "countries": [Country],
        "iata": ["abc123"],
        "icao": ["xyz789"],
        "id": 987,
        "names": ["xyz789"]
      }
    ]
  }
}

aircraftManufacturers

Description

Get a list of Aircraft Manufacturers

Response

Returns [AircraftManufacturer!]!

Example

Query
query aircraftManufacturers {
  aircraftManufacturers {
    id
    label
  }
}
Response
{
  "data": {
    "aircraftManufacturers": [
      {"id": 987, "label": "xyz789"}
    ]
  }
}

aircraftModels

Description

Get a list of Aircraft Models

Response

Returns [AircraftModel!]!

Arguments
Name Description
manufacturerId - Int (Optional) The id of the Aircraft Manufacturer

Example

Query
query aircraftModels($manufacturerId: Int) {
  aircraftModels(manufacturerId: $manufacturerId) {
    id
    label
  }
}
Variables
{"manufacturerId": 987}
Response
{
  "data": {
    "aircraftModels": [
      {"id": 123, "label": "abc123"}
    ]
  }
}

airframes

Description

Get a list of Airframes

Response

Returns [Airframe!]!

Arguments
Name Description
ids - [AirframeQuery!]! List of Airframe ids to query

Example

Query
query airframes($ids: [AirframeQuery!]!) {
  airframes(ids: $ids) {
    aircraft {
      ...AircraftFragment
    }
    build {
      ...AirframeBuildFragment
    }
    engineFamily {
      ...EngineFamilyFragment
    }
    engineManufacturer {
      ...EngineManufacturerFragment
    }
    engineMasterSeries {
      ...EngineMasterSeriesFragment
    }
    engineModel {
      ...EngineModelFragment
    }
    engineSeries {
      ...EngineSeriesFragment
    }
    family {
      ...AircraftFamilyFragment
    }
    hexCode
    id
    lineNumber
    manufacturer {
      ...AircraftManufacturerFragment
    }
    masterSeries {
      ...AircraftMasterSeriesFragment
    }
    model {
      ...AircraftModelFragment
    }
    operators {
      ...AirframeOperatorFragment
    }
    registrations {
      ...AirframeRegistrationFragment
    }
    serialNumber
    series {
      ...AircraftSeriesFragment
    }
    status {
      ...AirframeStatusFragment
    }
  }
}
Variables
{"ids": [AirframeQuery]}
Response
{
  "data": {
    "airframes": [
      {
        "aircraft": Aircraft,
        "build": [AirframeBuild],
        "engineFamily": EngineFamily,
        "engineManufacturer": EngineManufacturer,
        "engineMasterSeries": EngineMasterSeries,
        "engineModel": EngineModel,
        "engineSeries": EngineSeries,
        "family": AircraftFamily,
        "hexCode": "abc123",
        "id": "abc123",
        "lineNumber": "abc123",
        "manufacturer": AircraftManufacturer,
        "masterSeries": AircraftMasterSeries,
        "model": AircraftModel,
        "operators": [AirframeOperator],
        "registrations": [AirframeRegistration],
        "serialNumber": "xyz789",
        "series": AircraftSeries,
        "status": AirframeStatus
      }
    ]
  }
}

assignableAdjustmentPolicies

Description

Get the Policies that may be assigned to the Adjustment

Response

Returns [Policy!]!

Arguments
Name Description
id - String! The id of the Adjustment

Example

Query
query assignableAdjustmentPolicies($id: String!) {
  assignableAdjustmentPolicies(id: $id) {
    cls
    creationDate
    endDate
    id
    labels {
      ...PolicyLabelFragment
    }
    lastUpdateDate
    markets {
      ...PolicyMarketFragment
    }
    namedInsured {
      ...PolicyLegalEntityFragment
    }
    policyNumber
    policyholder {
      ...PolicyLegalEntityFragment
    }
    primaryBroker {
      ...PolicyLegalEntityFragment
    }
    secondaryBroker {
      ...PolicyLegalEntityFragment
    }
    startDate
    type
    zone {
      ...ZoneFragment
    }
  }
}
Variables
{"id": "abc123"}
Response
{
  "data": {
    "assignableAdjustmentPolicies": [
      {
        "cls": "aviation",
        "creationDate": "2007-12-03T10:15:30Z",
        "endDate": "2007-12-03T10:15:30Z",
        "id": "abc123",
        "labels": [PolicyLabel],
        "lastUpdateDate": "2007-12-03T10:15:30Z",
        "markets": [PolicyMarket],
        "namedInsured": [PolicyLegalEntity],
        "policyNumber": "xyz789",
        "policyholder": PolicyLegalEntity,
        "primaryBroker": PolicyLegalEntity,
        "secondaryBroker": PolicyLegalEntity,
        "startDate": "2007-12-03T10:15:30Z",
        "type": ["aviation_contingent_hull_all_risk"],
        "zone": Zone
      }
    ]
  }
}

companies

Description

Get a list of Companies/Organisations

Response

Returns an OffsetPaginatedCompanies!

Arguments
Name Description
limit - Int! The maximum number of items to return per page. The maximum value is 100. Default = 10
page - Int! The page number to retrieve. Default = 1

Example

Query
query companies(
  $limit: Int!,
  $page: Int!
) {
  companies(
    limit: $limit,
    page: $page
  ) {
    count
    data {
      ...CompanyFragment
    }
    page
    totalCount
    totalPages
  }
}
Variables
{"limit": 10, "page": 1}
Response
{
  "data": {
    "companies": {
      "count": 987,
      "data": [Company],
      "page": 123,
      "totalCount": 987,
      "totalPages": 123
    }
  }
}

constraints

Description

Get all constraints

Response

Returns [Constraint!]!

Example

Query
query constraints {
  constraints {
    field
    type
    value {
      ...ConstraintValueFragment
    }
  }
}
Response
{
  "data": {
    "constraints": [
      {
        "field": "AIRCRAFT_CYCLES",
        "type": "MAX_DATE",
        "value": ConstraintValue
      }
    ]
  }
}

dunsCompanies

Description

Get DUNS companies

Response

Returns a PaginatedDunsApiCompanies!

Arguments
Name Description
countryCode - String! The country code of the Company in ISO 3166-1 alpha-2 format
limit - Int! The maximum number of items to return per page. The maximum value is 100. Default = 10
name - String! The name of the Company. The maximum length is 128 characters
page - Int! The page number to retrieve. Default = 1

Example

Query
query dunsCompanies(
  $countryCode: String!,
  $limit: Int!,
  $name: String!,
  $page: Int!
) {
  dunsCompanies(
    countryCode: $countryCode,
    limit: $limit,
    name: $name,
    page: $page
  ) {
    count
    data {
      ...DunsApiCompanyFragment
    }
    page
    totalCount
    totalPages
  }
}
Variables
{
  "countryCode": "xyz789",
  "limit": 10,
  "name": "xyz789",
  "page": 1
}
Response
{
  "data": {
    "dunsCompanies": {
      "count": 987,
      "data": [DunsApiCompany],
      "page": 123,
      "totalCount": 123,
      "totalPages": 987
    }
  }
}

engineManufacturers

Description

Get a list of Engine Manufacturers

Response

Returns [EngineManufacturer!]!

Example

Query
query engineManufacturers {
  engineManufacturers {
    id
    label
  }
}
Response
{
  "data": {
    "engineManufacturers": [
      {"id": 123, "label": "xyz789"}
    ]
  }
}

engineModels

Description

Get a list of Engine Models

Response

Returns [EngineModel!]!

Arguments
Name Description
manufacturerId - Int (Optional) The id of the Aircraft Manufacturer

Example

Query
query engineModels($manufacturerId: Int) {
  engineModels(manufacturerId: $manufacturerId) {
    id
    label
  }
}
Variables
{"manufacturerId": 987}
Response
{
  "data": {
    "engineModels": [
      {"id": 987, "label": "xyz789"}
    ]
  }
}

exchangeRates

Description

Get the latest exchange rates

Response

Returns [ExchangeRate!]!

Arguments
Name Description
base - String! The base currency to convert from
places - Int The number of places to round the exchange rate to. Default = null

Example

Query
query exchangeRates(
  $base: String!,
  $places: Int
) {
  exchangeRates(
    base: $base,
    places: $places
  ) {
    base
    currency
    factor
  }
}
Variables
{"base": "xyz789", "places": null}
Response
{
  "data": {
    "exchangeRates": [
      {
        "base": "abc123",
        "currency": "abc123",
        "factor": 123.45
      }
    ]
  }
}

flights

Description

Get a list of Flights

Response

Returns a PaginatedFlights!

Arguments
Name Description
date - DateTime The Flight departure date
flightNumber - String! Flight number
limit - Int! The maximum number of items to return per page. The maximum value is 100. Default = 10
page - Int! The page number to retrieve. Default = 1

Example

Query
query flights(
  $date: DateTime,
  $flightNumber: String!,
  $limit: Int!,
  $page: Int!
) {
  flights(
    date: $date,
    flightNumber: $flightNumber,
    limit: $limit,
    page: $page
  ) {
    count
    data {
      ...FlightFragment
    }
    page
    totalCount
    totalPages
  }
}
Variables
{
  "date": "2007-12-03T10:15:30Z",
  "flightNumber": "xyz789",
  "limit": 10,
  "page": 1
}
Response
{
  "data": {
    "flights": {
      "count": 123,
      "data": [Flight],
      "page": 987,
      "totalCount": 123,
      "totalPages": 123
    }
  }
}

groups

Description

Get a list of Groups

Response

Returns an OffsetPaginatedGroups!

Arguments
Name Description
limit - Int! The maximum number of items to return per page. The maximum value is 100. Default = 10
page - Int! The page number to retrieve. Default = 1

Example

Query
query groups(
  $limit: Int!,
  $page: Int!
) {
  groups(
    limit: $limit,
    page: $page
  ) {
    count
    data {
      ...GroupFragment
    }
    page
    totalCount
    totalPages
  }
}
Variables
{"limit": 10, "page": 1}
Response
{
  "data": {
    "groups": {
      "count": 123,
      "data": [Group],
      "page": 123,
      "totalCount": 123,
      "totalPages": 987
    }
  }
}

lossNotices

Response

Returns an OffsetPaginatedLossNotices!

Arguments
Name Description
filters - LossNoticeQueryFilters
limit - Int! The maximum number of items to return per page. The maximum value is 100. Default = 10
page - Int! The page number to retrieve. Default = 1
sorting - LossNoticeQuerySorting

Example

Query
query lossNotices(
  $filters: LossNoticeQueryFilters,
  $limit: Int!,
  $page: Int!,
  $sorting: LossNoticeQuerySorting
) {
  lossNotices(
    filters: $filters,
    limit: $limit,
    page: $page,
    sorting: $sorting
  ) {
    count
    data {
      ...LossNoticeFragment
    }
    page
    totalCount
    totalPages
  }
}
Variables
{
  "filters": LossNoticeQueryFilters,
  "limit": 10,
  "page": 1,
  "sorting": LossNoticeQuerySorting
}
Response
{
  "data": {
    "lossNotices": {
      "count": 123,
      "data": [LossNotice],
      "page": 987,
      "totalCount": 987,
      "totalPages": 123
    }
  }
}

openAdjustment

Description

Open an Adjustment

Response

Returns an Adjustment!

Arguments
Name Description
id - String! The id of the Adjustment to open

Example

Query
query openAdjustment($id: String!) {
  openAdjustment(id: $id) {
    actions {
      ...AdjustmentActionFragment
    }
    airframes {
      ...AdjustmentAirframeFragment
    }
    allocations {
      ...AdjustmentAllocationFragment
    }
    categories
    collaborators {
      ...ActorFragment
    }
    costsExpenses {
      ...AdjustmentCostsExpensesFragment
    }
    creationDate
    documents {
      ...FileMetadataFragment
    }
    executiveSummary
    expert {
      ...ActorFragment
    }
    fees {
      ...AdjustmentFeesFragment
    }
    flights {
      ...AdjustmentFlightFragment
    }
    id
    images {
      ...FileMetadataFragment
    }
    indemnity {
      ...AdjustmentIndemnityFragment
    }
    labels {
      ...AdjustmentLabelFragment
    }
    lastUpdateDate
    legalEntities {
      ...AdjustmentLegalEntitiesFragment
    }
    lossDate
    lossLocation {
      ...LocationFragment
    }
    lossNotice {
      ...LossNoticeFragment
    }
    marketReferences {
      ...MarketReferenceFragment
    }
    operation {
      ...ActorFragment
    }
    owner {
      ...ActorFragment
    }
    recommendations
    reportDate
    reporter {
      ...ActorFragment
    }
    reportingCurrency
    reports {
      ...AdjustmentReportFragment
    }
    stakeholderReferences {
      ...StakeholderReferenceFragment
    }
    status
    statusHistory {
      ...AdjustmentStatusChangeFragment
    }
    transitions {
      ...AdjustmentTransitionFragment
    }
    unpublishedChanges
    zone {
      ...ZoneFragment
    }
  }
}
Variables
{"id": "xyz789"}
Response
{
  "data": {
    "openAdjustment": {
      "actions": [AdjustmentAction],
      "airframes": [AdjustmentAirframe],
      "allocations": [AdjustmentAllocation],
      "categories": ["aircraft_hull"],
      "collaborators": [Actor],
      "costsExpenses": AdjustmentCostsExpenses,
      "creationDate": "2007-12-03T10:15:30Z",
      "documents": [FileMetadata],
      "executiveSummary": {},
      "expert": Actor,
      "fees": AdjustmentFees,
      "flights": [AdjustmentFlight],
      "id": "abc123",
      "images": [FileMetadata],
      "indemnity": AdjustmentIndemnity,
      "labels": [AdjustmentLabel],
      "lastUpdateDate": "2007-12-03T10:15:30Z",
      "legalEntities": AdjustmentLegalEntities,
      "lossDate": "2007-12-03T10:15:30Z",
      "lossLocation": Location,
      "lossNotice": LossNotice,
      "marketReferences": [MarketReference],
      "operation": Actor,
      "owner": Actor,
      "recommendations": {},
      "reportDate": "2007-12-03T10:15:30Z",
      "reporter": Actor,
      "reportingCurrency": "abc123",
      "reports": [AdjustmentReport],
      "stakeholderReferences": [StakeholderReference],
      "status": "abeyance",
      "statusHistory": [AdjustmentStatusChange],
      "transitions": [AdjustmentTransition],
      "unpublishedChanges": true,
      "zone": Zone
    }
  }
}

openLossNotice

Response

Returns a LossNotice!

Arguments
Name Description
id - String!

Example

Query
query openLossNotice($id: String!) {
  openLossNotice(id: $id) {
    actions
    airframes {
      ...LossNoticeAirframeFragment
    }
    categories
    creationDate
    documents {
      ...FileMetadataFragment
    }
    flights {
      ...LossNoticeFlightFragment
    }
    id
    images {
      ...FileMetadataFragment
    }
    labels {
      ...LossNoticeLabelFragment
    }
    lastUpdateDate
    lossDate
    lossLocation {
      ...LocationFragment
    }
    narrative
    operation {
      ...ActorFragment
    }
    reportDate
    reporter {
      ...ActorFragment
    }
    status
    zone {
      ...ZoneFragment
    }
  }
}
Variables
{"id": "xyz789"}
Response
{
  "data": {
    "openLossNotice": {
      "actions": ["create"],
      "airframes": [LossNoticeAirframe],
      "categories": ["aircraft_hull"],
      "creationDate": "2007-12-03T10:15:30Z",
      "documents": [FileMetadata],
      "flights": [LossNoticeFlight],
      "id": "abc123",
      "images": [FileMetadata],
      "labels": [LossNoticeLabel],
      "lastUpdateDate": "2007-12-03T10:15:30Z",
      "lossDate": "2007-12-03T10:15:30Z",
      "lossLocation": Location,
      "narrative": {},
      "operation": Actor,
      "reportDate": "2007-12-03T10:15:30Z",
      "reporter": Actor,
      "status": "draft",
      "zone": Zone
    }
  }
}

openPolicy

Description

Open a Policy

Response

Returns a Policy!

Arguments
Name Description
id - String! The id of the Policy

Example

Query
query openPolicy($id: String!) {
  openPolicy(id: $id) {
    cls
    creationDate
    endDate
    id
    labels {
      ...PolicyLabelFragment
    }
    lastUpdateDate
    markets {
      ...PolicyMarketFragment
    }
    namedInsured {
      ...PolicyLegalEntityFragment
    }
    policyNumber
    policyholder {
      ...PolicyLegalEntityFragment
    }
    primaryBroker {
      ...PolicyLegalEntityFragment
    }
    secondaryBroker {
      ...PolicyLegalEntityFragment
    }
    startDate
    type
    zone {
      ...ZoneFragment
    }
  }
}
Variables
{"id": "abc123"}
Response
{
  "data": {
    "openPolicy": {
      "cls": "aviation",
      "creationDate": "2007-12-03T10:15:30Z",
      "endDate": "2007-12-03T10:15:30Z",
      "id": "abc123",
      "labels": [PolicyLabel],
      "lastUpdateDate": "2007-12-03T10:15:30Z",
      "markets": [PolicyMarket],
      "namedInsured": [PolicyLegalEntity],
      "policyNumber": "xyz789",
      "policyholder": PolicyLegalEntity,
      "primaryBroker": PolicyLegalEntity,
      "secondaryBroker": PolicyLegalEntity,
      "startDate": "2007-12-03T10:15:30Z",
      "type": ["aviation_contingent_hull_all_risk"],
      "zone": Zone
    }
  }
}

policies

Description

Get a list of policies

Response

Returns an OffsetPaginatedPolicies!

Arguments
Name Description
filters - PolicyQueryFilters
limit - Int! The maximum number of items to return per page. The maximum value is 100. Default = 10
page - Int! The page number to retrieve. Default = 1
sorting - PolicyQuerySorting

Example

Query
query policies(
  $filters: PolicyQueryFilters,
  $limit: Int!,
  $page: Int!,
  $sorting: PolicyQuerySorting
) {
  policies(
    filters: $filters,
    limit: $limit,
    page: $page,
    sorting: $sorting
  ) {
    count
    data {
      ...PolicyFragment
    }
    page
    totalCount
    totalPages
  }
}
Variables
{
  "filters": PolicyQueryFilters,
  "limit": 10,
  "page": 1,
  "sorting": PolicyQuerySorting
}
Response
{
  "data": {
    "policies": {
      "count": 123,
      "data": [Policy],
      "page": 123,
      "totalCount": 123,
      "totalPages": 123
    }
  }
}

suggestAerodrome

Description

Search/Suggest an Aerodrome

Response

Returns [Aerodrome!]!

Arguments
Name Description
limit - Int The maximum number of results to return. The maximum value is 50. Default = 10
query - String! The Aerodrome query. This may be a partial name or IATA/ICAO code. The maximum length is 64 characters

Example

Query
query suggestAerodrome(
  $limit: Int,
  $query: String!
) {
  suggestAerodrome(
    limit: $limit,
    query: $query
  ) {
    country {
      ...CountryFragment
    }
    elevation
    iataCode
    icaoCode
    id
    latitude
    longitude
    name
    runways {
      ...RunwayFragment
    }
    subdivision {
      ...SubdivisionFragment
    }
    timeZone
    type {
      ...AerodromeTypeFragment
    }
  }
}
Variables
{"limit": 10, "query": "xyz789"}
Response
{
  "data": {
    "suggestAerodrome": [
      {
        "country": Country,
        "elevation": 123,
        "iataCode": "xyz789",
        "icaoCode": "xyz789",
        "id": 987,
        "latitude": Decimal,
        "longitude": Decimal,
        "name": "xyz789",
        "runways": [Runway],
        "subdivision": Subdivision,
        "timeZone": "xyz789",
        "type": AerodromeType
      }
    ]
  }
}

suggestAirCarrier

Description

Search/Suggest an Air Carrier/Operator

Response

Returns [AirCarrier!]!

Arguments
Name Description
limit - Int The maximum number of results to return. The maximum value is 50. Default = 10
query - String! The Air Carrier/Operator query. This may be a partial name or IATA/ICAO code. The maximum length is 64 characters

Example

Query
query suggestAirCarrier(
  $limit: Int,
  $query: String!
) {
  suggestAirCarrier(
    limit: $limit,
    query: $query
  ) {
    callsigns
    countries {
      ...CountryFragment
    }
    iata
    icao
    id
    names
  }
}
Variables
{"limit": 10, "query": "abc123"}
Response
{
  "data": {
    "suggestAirCarrier": [
      {
        "callsigns": ["xyz789"],
        "countries": [Country],
        "iata": ["abc123"],
        "icao": ["xyz789"],
        "id": 123,
        "names": ["xyz789"]
      }
    ]
  }
}

suggestAirframe

Description

Search/Suggest an Airframe

Response

Returns [Airframe!]!

Arguments
Name Description
limit - Int The maximum number of results to return. The maximum value is 50. Default = 10
query - String! The Airframe query. This may be a partial registration or serial number. The maximum length is 64 characters

Example

Query
query suggestAirframe(
  $limit: Int,
  $query: String!
) {
  suggestAirframe(
    limit: $limit,
    query: $query
  ) {
    aircraft {
      ...AircraftFragment
    }
    build {
      ...AirframeBuildFragment
    }
    engineFamily {
      ...EngineFamilyFragment
    }
    engineManufacturer {
      ...EngineManufacturerFragment
    }
    engineMasterSeries {
      ...EngineMasterSeriesFragment
    }
    engineModel {
      ...EngineModelFragment
    }
    engineSeries {
      ...EngineSeriesFragment
    }
    family {
      ...AircraftFamilyFragment
    }
    hexCode
    id
    lineNumber
    manufacturer {
      ...AircraftManufacturerFragment
    }
    masterSeries {
      ...AircraftMasterSeriesFragment
    }
    model {
      ...AircraftModelFragment
    }
    operators {
      ...AirframeOperatorFragment
    }
    registrations {
      ...AirframeRegistrationFragment
    }
    serialNumber
    series {
      ...AircraftSeriesFragment
    }
    status {
      ...AirframeStatusFragment
    }
  }
}
Variables
{"limit": 10, "query": "abc123"}
Response
{
  "data": {
    "suggestAirframe": [
      {
        "aircraft": Aircraft,
        "build": [AirframeBuild],
        "engineFamily": EngineFamily,
        "engineManufacturer": EngineManufacturer,
        "engineMasterSeries": EngineMasterSeries,
        "engineModel": EngineModel,
        "engineSeries": EngineSeries,
        "family": AircraftFamily,
        "hexCode": "abc123",
        "id": "xyz789",
        "lineNumber": "abc123",
        "manufacturer": AircraftManufacturer,
        "masterSeries": AircraftMasterSeries,
        "model": AircraftModel,
        "operators": [AirframeOperator],
        "registrations": [AirframeRegistration],
        "serialNumber": "xyz789",
        "series": AircraftSeries,
        "status": AirframeStatus
      }
    ]
  }
}

userAuthStrategies

Description

Get the authentication strategies for a User

Response

Returns [AuthStrategy!]!

Arguments
Name Description
userName - String!

Example

Query
query userAuthStrategies($userName: String!) {
  userAuthStrategies(userName: $userName) {
    description
    id
    strategy
    url
  }
}
Variables
{"userName": "abc123"}
Response
{
  "data": {
    "userAuthStrategies": [
      {
        "description": "xyz789",
        "id": "abc123",
        "strategy": "LOCAL",
        "url": "abc123"
      }
    ]
  }
}

userOpenHistory

Description

Get the open history for the current User

Response

Returns [UserOpenHistory!]!

Arguments
Name Description
zoneId - String

Example

Query
query userOpenHistory($zoneId: String) {
  userOpenHistory(zoneId: $zoneId) {
    ... on Adjustment {
      ...AdjustmentFragment
    }
    ... on LossNotice {
      ...LossNoticeFragment
    }
    ... on Policy {
      ...PolicyFragment
    }
  }
}
Variables
{"zoneId": "xyz789"}
Response
{"data": {"userOpenHistory": [Adjustment]}}

userPermissions

Description

Get the current User's permissions

Response

Returns a UserPermissions!

Example

Query
query userPermissions {
  userPermissions {
    global {
      ...ResourceActionsFragment
    }
    zones {
      ...ZoneFragment
    }
  }
}
Response
{
  "data": {
    "userPermissions": {
      "global": [ResourceActions],
      "zones": [Zone]
    }
  }
}

userProfile

Description

Get the current User's profile

Response

Returns a User!

Example

Query
query userProfile {
  userProfile {
    active
    displayName
    emails {
      ...UserEmailFragment
    }
    groups {
      ...GroupFragment
    }
    id
    locale
    name {
      ...UserNameFragment
    }
    provider
    timezone
    userName
  }
}
Response
{
  "data": {
    "userProfile": {
      "active": false,
      "displayName": "abc123",
      "emails": [UserEmail],
      "groups": [Group],
      "id": "abc123",
      "locale": "abc123",
      "name": UserName,
      "provider": "abc123",
      "timezone": "xyz789",
      "userName": "xyz789"
    }
  }
}

users

Description

Get a list of Users

Response

Returns an OffsetPaginatedUsers!

Arguments
Name Description
limit - Int! The maximum number of items to return per page. The maximum value is 100. Default = 10
page - Int! The page number to retrieve. Default = 1

Example

Query
query users(
  $limit: Int!,
  $page: Int!
) {
  users(
    limit: $limit,
    page: $page
  ) {
    count
    data {
      ...UserFragment
    }
    page
    totalCount
    totalPages
  }
}
Variables
{"limit": 10, "page": 1}
Response
{
  "data": {
    "users": {
      "count": 123,
      "data": [User],
      "page": 987,
      "totalCount": 987,
      "totalPages": 123
    }
  }
}

zoneRoles

Description

Get Roles for a Zone

Response

Returns [Role!]!

Arguments
Name Description
id - String The id of the Zone

Example

Query
query zoneRoles($id: String) {
  zoneRoles(id: $id) {
    description
    enabled
    group {
      ...GroupFragment
    }
    id
    name
    permissions {
      ...PermissionFragment
    }
    scope
    zone {
      ...ZoneFragment
    }
  }
}
Variables
{"id": "xyz789"}
Response
{
  "data": {
    "zoneRoles": [
      {
        "description": "xyz789",
        "enabled": true,
        "group": Group,
        "id": "abc123",
        "name": "xyz789",
        "permissions": [Permission],
        "scope": "global",
        "zone": Zone
      }
    ]
  }
}

zoneStakeholders

Description

Get all stakeholders for a Zone

Response

Returns [Stakeholder!]!

Arguments
Name Description
disposition - StakeholderDisposition (Optional) The Disposition of the Stakeholder. Default = assignable
role - StakeholderRole (Optional) The Role of the Stakeholder
zoneId - String (Optional) The id of the Zone

Example

Query
query zoneStakeholders(
  $disposition: StakeholderDisposition,
  $role: StakeholderRole,
  $zoneId: String
) {
  zoneStakeholders(
    disposition: $disposition,
    role: $role,
    zoneId: $zoneId
  ) {
    company {
      ...CompanyFragment
    }
    id
    roles
    zone {
      ...ZoneFragment
    }
  }
}
Variables
{
  "disposition": "assignable",
  "role": "broker",
  "zoneId": "abc123"
}
Response
{
  "data": {
    "zoneStakeholders": [
      {
        "company": Company,
        "id": "xyz789",
        "roles": ["broker"],
        "zone": Zone
      }
    ]
  }
}

Mutations

addAdjustmentAirframe

Description

Add an Airframe to an Adjustment

Response

Returns an Adjustment!

Arguments
Name Description
data - AddAdjustmentAirframeInput!

Example

Query
mutation addAdjustmentAirframe($data: AddAdjustmentAirframeInput!) {
  addAdjustmentAirframe(data: $data) {
    actions {
      ...AdjustmentActionFragment
    }
    airframes {
      ...AdjustmentAirframeFragment
    }
    allocations {
      ...AdjustmentAllocationFragment
    }
    categories
    collaborators {
      ...ActorFragment
    }
    costsExpenses {
      ...AdjustmentCostsExpensesFragment
    }
    creationDate
    documents {
      ...FileMetadataFragment
    }
    executiveSummary
    expert {
      ...ActorFragment
    }
    fees {
      ...AdjustmentFeesFragment
    }
    flights {
      ...AdjustmentFlightFragment
    }
    id
    images {
      ...FileMetadataFragment
    }
    indemnity {
      ...AdjustmentIndemnityFragment
    }
    labels {
      ...AdjustmentLabelFragment
    }
    lastUpdateDate
    legalEntities {
      ...AdjustmentLegalEntitiesFragment
    }
    lossDate
    lossLocation {
      ...LocationFragment
    }
    lossNotice {
      ...LossNoticeFragment
    }
    marketReferences {
      ...MarketReferenceFragment
    }
    operation {
      ...ActorFragment
    }
    owner {
      ...ActorFragment
    }
    recommendations
    reportDate
    reporter {
      ...ActorFragment
    }
    reportingCurrency
    reports {
      ...AdjustmentReportFragment
    }
    stakeholderReferences {
      ...StakeholderReferenceFragment
    }
    status
    statusHistory {
      ...AdjustmentStatusChangeFragment
    }
    transitions {
      ...AdjustmentTransitionFragment
    }
    unpublishedChanges
    zone {
      ...ZoneFragment
    }
  }
}
Variables
{"data": AddAdjustmentAirframeInput}
Response
{
  "data": {
    "addAdjustmentAirframe": {
      "actions": [AdjustmentAction],
      "airframes": [AdjustmentAirframe],
      "allocations": [AdjustmentAllocation],
      "categories": ["aircraft_hull"],
      "collaborators": [Actor],
      "costsExpenses": AdjustmentCostsExpenses,
      "creationDate": "2007-12-03T10:15:30Z",
      "documents": [FileMetadata],
      "executiveSummary": {},
      "expert": Actor,
      "fees": AdjustmentFees,
      "flights": [AdjustmentFlight],
      "id": "abc123",
      "images": [FileMetadata],
      "indemnity": AdjustmentIndemnity,
      "labels": [AdjustmentLabel],
      "lastUpdateDate": "2007-12-03T10:15:30Z",
      "legalEntities": AdjustmentLegalEntities,
      "lossDate": "2007-12-03T10:15:30Z",
      "lossLocation": Location,
      "lossNotice": LossNotice,
      "marketReferences": [MarketReference],
      "operation": Actor,
      "owner": Actor,
      "recommendations": {},
      "reportDate": "2007-12-03T10:15:30Z",
      "reporter": Actor,
      "reportingCurrency": "xyz789",
      "reports": [AdjustmentReport],
      "stakeholderReferences": [StakeholderReference],
      "status": "abeyance",
      "statusHistory": [AdjustmentStatusChange],
      "transitions": [AdjustmentTransition],
      "unpublishedChanges": false,
      "zone": Zone
    }
  }
}

addAdjustmentAirframeCrewMember

Description

Add a Crew Member to an Adjustment Airframe

Response

Returns an Adjustment!

Arguments
Name Description
data - AddAdjustmentAirframeCrewMemberInput!

Example

Query
mutation addAdjustmentAirframeCrewMember($data: AddAdjustmentAirframeCrewMemberInput!) {
  addAdjustmentAirframeCrewMember(data: $data) {
    actions {
      ...AdjustmentActionFragment
    }
    airframes {
      ...AdjustmentAirframeFragment
    }
    allocations {
      ...AdjustmentAllocationFragment
    }
    categories
    collaborators {
      ...ActorFragment
    }
    costsExpenses {
      ...AdjustmentCostsExpensesFragment
    }
    creationDate
    documents {
      ...FileMetadataFragment
    }
    executiveSummary
    expert {
      ...ActorFragment
    }
    fees {
      ...AdjustmentFeesFragment
    }
    flights {
      ...AdjustmentFlightFragment
    }
    id
    images {
      ...FileMetadataFragment
    }
    indemnity {
      ...AdjustmentIndemnityFragment
    }
    labels {
      ...AdjustmentLabelFragment
    }
    lastUpdateDate
    legalEntities {
      ...AdjustmentLegalEntitiesFragment
    }
    lossDate
    lossLocation {
      ...LocationFragment
    }
    lossNotice {
      ...LossNoticeFragment
    }
    marketReferences {
      ...MarketReferenceFragment
    }
    operation {
      ...ActorFragment
    }
    owner {
      ...ActorFragment
    }
    recommendations
    reportDate
    reporter {
      ...ActorFragment
    }
    reportingCurrency
    reports {
      ...AdjustmentReportFragment
    }
    stakeholderReferences {
      ...StakeholderReferenceFragment
    }
    status
    statusHistory {
      ...AdjustmentStatusChangeFragment
    }
    transitions {
      ...AdjustmentTransitionFragment
    }
    unpublishedChanges
    zone {
      ...ZoneFragment
    }
  }
}
Variables
{"data": AddAdjustmentAirframeCrewMemberInput}
Response
{
  "data": {
    "addAdjustmentAirframeCrewMember": {
      "actions": [AdjustmentAction],
      "airframes": [AdjustmentAirframe],
      "allocations": [AdjustmentAllocation],
      "categories": ["aircraft_hull"],
      "collaborators": [Actor],
      "costsExpenses": AdjustmentCostsExpenses,
      "creationDate": "2007-12-03T10:15:30Z",
      "documents": [FileMetadata],
      "executiveSummary": {},
      "expert": Actor,
      "fees": AdjustmentFees,
      "flights": [AdjustmentFlight],
      "id": "abc123",
      "images": [FileMetadata],
      "indemnity": AdjustmentIndemnity,
      "labels": [AdjustmentLabel],
      "lastUpdateDate": "2007-12-03T10:15:30Z",
      "legalEntities": AdjustmentLegalEntities,
      "lossDate": "2007-12-03T10:15:30Z",
      "lossLocation": Location,
      "lossNotice": LossNotice,
      "marketReferences": [MarketReference],
      "operation": Actor,
      "owner": Actor,
      "recommendations": {},
      "reportDate": "2007-12-03T10:15:30Z",
      "reporter": Actor,
      "reportingCurrency": "xyz789",
      "reports": [AdjustmentReport],
      "stakeholderReferences": [StakeholderReference],
      "status": "abeyance",
      "statusHistory": [AdjustmentStatusChange],
      "transitions": [AdjustmentTransition],
      "unpublishedChanges": false,
      "zone": Zone
    }
  }
}

addAdjustmentAirframeEngine

Description

Add an Engine to an Adjustment Airframe

Response

Returns an Adjustment!

Arguments
Name Description
data - AddAdjustmentAirframeEngineInput!

Example

Query
mutation addAdjustmentAirframeEngine($data: AddAdjustmentAirframeEngineInput!) {
  addAdjustmentAirframeEngine(data: $data) {
    actions {
      ...AdjustmentActionFragment
    }
    airframes {
      ...AdjustmentAirframeFragment
    }
    allocations {
      ...AdjustmentAllocationFragment
    }
    categories
    collaborators {
      ...ActorFragment
    }
    costsExpenses {
      ...AdjustmentCostsExpensesFragment
    }
    creationDate
    documents {
      ...FileMetadataFragment
    }
    executiveSummary
    expert {
      ...ActorFragment
    }
    fees {
      ...AdjustmentFeesFragment
    }
    flights {
      ...AdjustmentFlightFragment
    }
    id
    images {
      ...FileMetadataFragment
    }
    indemnity {
      ...AdjustmentIndemnityFragment
    }
    labels {
      ...AdjustmentLabelFragment
    }
    lastUpdateDate
    legalEntities {
      ...AdjustmentLegalEntitiesFragment
    }
    lossDate
    lossLocation {
      ...LocationFragment
    }
    lossNotice {
      ...LossNoticeFragment
    }
    marketReferences {
      ...MarketReferenceFragment
    }
    operation {
      ...ActorFragment
    }
    owner {
      ...ActorFragment
    }
    recommendations
    reportDate
    reporter {
      ...ActorFragment
    }
    reportingCurrency
    reports {
      ...AdjustmentReportFragment
    }
    stakeholderReferences {
      ...StakeholderReferenceFragment
    }
    status
    statusHistory {
      ...AdjustmentStatusChangeFragment
    }
    transitions {
      ...AdjustmentTransitionFragment
    }
    unpublishedChanges
    zone {
      ...ZoneFragment
    }
  }
}
Variables
{"data": AddAdjustmentAirframeEngineInput}
Response
{
  "data": {
    "addAdjustmentAirframeEngine": {
      "actions": [AdjustmentAction],
      "airframes": [AdjustmentAirframe],
      "allocations": [AdjustmentAllocation],
      "categories": ["aircraft_hull"],
      "collaborators": [Actor],
      "costsExpenses": AdjustmentCostsExpenses,
      "creationDate": "2007-12-03T10:15:30Z",
      "documents": [FileMetadata],
      "executiveSummary": {},
      "expert": Actor,
      "fees": AdjustmentFees,
      "flights": [AdjustmentFlight],
      "id": "abc123",
      "images": [FileMetadata],
      "indemnity": AdjustmentIndemnity,
      "labels": [AdjustmentLabel],
      "lastUpdateDate": "2007-12-03T10:15:30Z",
      "legalEntities": AdjustmentLegalEntities,
      "lossDate": "2007-12-03T10:15:30Z",
      "lossLocation": Location,
      "lossNotice": LossNotice,
      "marketReferences": [MarketReference],
      "operation": Actor,
      "owner": Actor,
      "recommendations": {},
      "reportDate": "2007-12-03T10:15:30Z",
      "reporter": Actor,
      "reportingCurrency": "abc123",
      "reports": [AdjustmentReport],
      "stakeholderReferences": [StakeholderReference],
      "status": "abeyance",
      "statusHistory": [AdjustmentStatusChange],
      "transitions": [AdjustmentTransition],
      "unpublishedChanges": false,
      "zone": Zone
    }
  }
}

addAdjustmentAirframeEngineDamage

Description

Add Damage to an Adjustment Airframe Engine

Response

Returns an Adjustment!

Arguments
Name Description
data - AddAdjustmentAirframeEngineDamageInput!

Example

Query
mutation addAdjustmentAirframeEngineDamage($data: AddAdjustmentAirframeEngineDamageInput!) {
  addAdjustmentAirframeEngineDamage(data: $data) {
    actions {
      ...AdjustmentActionFragment
    }
    airframes {
      ...AdjustmentAirframeFragment
    }
    allocations {
      ...AdjustmentAllocationFragment
    }
    categories
    collaborators {
      ...ActorFragment
    }
    costsExpenses {
      ...AdjustmentCostsExpensesFragment
    }
    creationDate
    documents {
      ...FileMetadataFragment
    }
    executiveSummary
    expert {
      ...ActorFragment
    }
    fees {
      ...AdjustmentFeesFragment
    }
    flights {
      ...AdjustmentFlightFragment
    }
    id
    images {
      ...FileMetadataFragment
    }
    indemnity {
      ...AdjustmentIndemnityFragment
    }
    labels {
      ...AdjustmentLabelFragment
    }
    lastUpdateDate
    legalEntities {
      ...AdjustmentLegalEntitiesFragment
    }
    lossDate
    lossLocation {
      ...LocationFragment
    }
    lossNotice {
      ...LossNoticeFragment
    }
    marketReferences {
      ...MarketReferenceFragment
    }
    operation {
      ...ActorFragment
    }
    owner {
      ...ActorFragment
    }
    recommendations
    reportDate
    reporter {
      ...ActorFragment
    }
    reportingCurrency
    reports {
      ...AdjustmentReportFragment
    }
    stakeholderReferences {
      ...StakeholderReferenceFragment
    }
    status
    statusHistory {
      ...AdjustmentStatusChangeFragment
    }
    transitions {
      ...AdjustmentTransitionFragment
    }
    unpublishedChanges
    zone {
      ...ZoneFragment
    }
  }
}
Variables
{"data": AddAdjustmentAirframeEngineDamageInput}
Response
{
  "data": {
    "addAdjustmentAirframeEngineDamage": {
      "actions": [AdjustmentAction],
      "airframes": [AdjustmentAirframe],
      "allocations": [AdjustmentAllocation],
      "categories": ["aircraft_hull"],
      "collaborators": [Actor],
      "costsExpenses": AdjustmentCostsExpenses,
      "creationDate": "2007-12-03T10:15:30Z",
      "documents": [FileMetadata],
      "executiveSummary": {},
      "expert": Actor,
      "fees": AdjustmentFees,
      "flights": [AdjustmentFlight],
      "id": "xyz789",
      "images": [FileMetadata],
      "indemnity": AdjustmentIndemnity,
      "labels": [AdjustmentLabel],
      "lastUpdateDate": "2007-12-03T10:15:30Z",
      "legalEntities": AdjustmentLegalEntities,
      "lossDate": "2007-12-03T10:15:30Z",
      "lossLocation": Location,
      "lossNotice": LossNotice,
      "marketReferences": [MarketReference],
      "operation": Actor,
      "owner": Actor,
      "recommendations": {},
      "reportDate": "2007-12-03T10:15:30Z",
      "reporter": Actor,
      "reportingCurrency": "xyz789",
      "reports": [AdjustmentReport],
      "stakeholderReferences": [StakeholderReference],
      "status": "abeyance",
      "statusHistory": [AdjustmentStatusChange],
      "transitions": [AdjustmentTransition],
      "unpublishedChanges": false,
      "zone": Zone
    }
  }
}

addAdjustmentAirframeEngineMaintenanceCheck

Description

Add a Maintenance Check to an Adjustment Airframe Engine

Response

Returns an Adjustment!

Arguments
Name Description
data - AddAdjustmentAirframeEngineMaintenanceCheckInput!

Example

Query
mutation addAdjustmentAirframeEngineMaintenanceCheck($data: AddAdjustmentAirframeEngineMaintenanceCheckInput!) {
  addAdjustmentAirframeEngineMaintenanceCheck(data: $data) {
    actions {
      ...AdjustmentActionFragment
    }
    airframes {
      ...AdjustmentAirframeFragment
    }
    allocations {
      ...AdjustmentAllocationFragment
    }
    categories
    collaborators {
      ...ActorFragment
    }
    costsExpenses {
      ...AdjustmentCostsExpensesFragment
    }
    creationDate
    documents {
      ...FileMetadataFragment
    }
    executiveSummary
    expert {
      ...ActorFragment
    }
    fees {
      ...AdjustmentFeesFragment
    }
    flights {
      ...AdjustmentFlightFragment
    }
    id
    images {
      ...FileMetadataFragment
    }
    indemnity {
      ...AdjustmentIndemnityFragment
    }
    labels {
      ...AdjustmentLabelFragment
    }
    lastUpdateDate
    legalEntities {
      ...AdjustmentLegalEntitiesFragment
    }
    lossDate
    lossLocation {
      ...LocationFragment
    }
    lossNotice {
      ...LossNoticeFragment
    }
    marketReferences {
      ...MarketReferenceFragment
    }
    operation {
      ...ActorFragment
    }
    owner {
      ...ActorFragment
    }
    recommendations
    reportDate
    reporter {
      ...ActorFragment
    }
    reportingCurrency
    reports {
      ...AdjustmentReportFragment
    }
    stakeholderReferences {
      ...StakeholderReferenceFragment
    }
    status
    statusHistory {
      ...AdjustmentStatusChangeFragment
    }
    transitions {
      ...AdjustmentTransitionFragment
    }
    unpublishedChanges
    zone {
      ...ZoneFragment
    }
  }
}
Variables
{"data": AddAdjustmentAirframeEngineMaintenanceCheckInput}
Response
{
  "data": {
    "addAdjustmentAirframeEngineMaintenanceCheck": {
      "actions": [AdjustmentAction],
      "airframes": [AdjustmentAirframe],
      "allocations": [AdjustmentAllocation],
      "categories": ["aircraft_hull"],
      "collaborators": [Actor],
      "costsExpenses": AdjustmentCostsExpenses,
      "creationDate": "2007-12-03T10:15:30Z",
      "documents": [FileMetadata],
      "executiveSummary": {},
      "expert": Actor,
      "fees": AdjustmentFees,
      "flights": [AdjustmentFlight],
      "id": "xyz789",
      "images": [FileMetadata],
      "indemnity": AdjustmentIndemnity,
      "labels": [AdjustmentLabel],
      "lastUpdateDate": "2007-12-03T10:15:30Z",
      "legalEntities": AdjustmentLegalEntities,
      "lossDate": "2007-12-03T10:15:30Z",
      "lossLocation": Location,
      "lossNotice": LossNotice,
      "marketReferences": [MarketReference],
      "operation": Actor,
      "owner": Actor,
      "recommendations": {},
      "reportDate": "2007-12-03T10:15:30Z",
      "reporter": Actor,
      "reportingCurrency": "xyz789",
      "reports": [AdjustmentReport],
      "stakeholderReferences": [StakeholderReference],
      "status": "abeyance",
      "statusHistory": [AdjustmentStatusChange],
      "transitions": [AdjustmentTransition],
      "unpublishedChanges": true,
      "zone": Zone
    }
  }
}

addAdjustmentAirframeMaintenanceCheck

Description

Add a Maintenance Check to an Adjustment Airframe

Response

Returns an Adjustment!

Arguments
Name Description
data - AddAdjustmentAirframeMaintenanceCheckInput!

Example

Query
mutation addAdjustmentAirframeMaintenanceCheck($data: AddAdjustmentAirframeMaintenanceCheckInput!) {
  addAdjustmentAirframeMaintenanceCheck(data: $data) {
    actions {
      ...AdjustmentActionFragment
    }
    airframes {
      ...AdjustmentAirframeFragment
    }
    allocations {
      ...AdjustmentAllocationFragment
    }
    categories
    collaborators {
      ...ActorFragment
    }
    costsExpenses {
      ...AdjustmentCostsExpensesFragment
    }
    creationDate
    documents {
      ...FileMetadataFragment
    }
    executiveSummary
    expert {
      ...ActorFragment
    }
    fees {
      ...AdjustmentFeesFragment
    }
    flights {
      ...AdjustmentFlightFragment
    }
    id
    images {
      ...FileMetadataFragment
    }
    indemnity {
      ...AdjustmentIndemnityFragment
    }
    labels {
      ...AdjustmentLabelFragment
    }
    lastUpdateDate
    legalEntities {
      ...AdjustmentLegalEntitiesFragment
    }
    lossDate
    lossLocation {
      ...LocationFragment
    }
    lossNotice {
      ...LossNoticeFragment
    }
    marketReferences {
      ...MarketReferenceFragment
    }
    operation {
      ...ActorFragment
    }
    owner {
      ...ActorFragment
    }
    recommendations
    reportDate
    reporter {
      ...ActorFragment
    }
    reportingCurrency
    reports {
      ...AdjustmentReportFragment
    }
    stakeholderReferences {
      ...StakeholderReferenceFragment
    }
    status
    statusHistory {
      ...AdjustmentStatusChangeFragment
    }
    transitions {
      ...AdjustmentTransitionFragment
    }
    unpublishedChanges
    zone {
      ...ZoneFragment
    }
  }
}
Variables
{"data": AddAdjustmentAirframeMaintenanceCheckInput}
Response
{
  "data": {
    "addAdjustmentAirframeMaintenanceCheck": {
      "actions": [AdjustmentAction],
      "airframes": [AdjustmentAirframe],
      "allocations": [AdjustmentAllocation],
      "categories": ["aircraft_hull"],
      "collaborators": [Actor],
      "costsExpenses": AdjustmentCostsExpenses,
      "creationDate": "2007-12-03T10:15:30Z",
      "documents": [FileMetadata],
      "executiveSummary": {},
      "expert": Actor,
      "fees": AdjustmentFees,
      "flights": [AdjustmentFlight],
      "id": "abc123",
      "images": [FileMetadata],
      "indemnity": AdjustmentIndemnity,
      "labels": [AdjustmentLabel],
      "lastUpdateDate": "2007-12-03T10:15:30Z",
      "legalEntities": AdjustmentLegalEntities,
      "lossDate": "2007-12-03T10:15:30Z",
      "lossLocation": Location,
      "lossNotice": LossNotice,
      "marketReferences": [MarketReference],
      "operation": Actor,
      "owner": Actor,
      "recommendations": {},
      "reportDate": "2007-12-03T10:15:30Z",
      "reporter": Actor,
      "reportingCurrency": "xyz789",
      "reports": [AdjustmentReport],
      "stakeholderReferences": [StakeholderReference],
      "status": "abeyance",
      "statusHistory": [AdjustmentStatusChange],
      "transitions": [AdjustmentTransition],
      "unpublishedChanges": false,
      "zone": Zone
    }
  }
}

addAdjustmentAirframePartDamage

Description

Add Damage to an Adjustment Airframe Part

Response

Returns an Adjustment!

Arguments
Name Description
data - AddAdjustmentAirframePartDamageInput!

Example

Query
mutation addAdjustmentAirframePartDamage($data: AddAdjustmentAirframePartDamageInput!) {
  addAdjustmentAirframePartDamage(data: $data) {
    actions {
      ...AdjustmentActionFragment
    }
    airframes {
      ...AdjustmentAirframeFragment
    }
    allocations {
      ...AdjustmentAllocationFragment
    }
    categories
    collaborators {
      ...ActorFragment
    }
    costsExpenses {
      ...AdjustmentCostsExpensesFragment
    }
    creationDate
    documents {
      ...FileMetadataFragment
    }
    executiveSummary
    expert {
      ...ActorFragment
    }
    fees {
      ...AdjustmentFeesFragment
    }
    flights {
      ...AdjustmentFlightFragment
    }
    id
    images {
      ...FileMetadataFragment
    }
    indemnity {
      ...AdjustmentIndemnityFragment
    }
    labels {
      ...AdjustmentLabelFragment
    }
    lastUpdateDate
    legalEntities {
      ...AdjustmentLegalEntitiesFragment
    }
    lossDate
    lossLocation {
      ...LocationFragment
    }
    lossNotice {
      ...LossNoticeFragment
    }
    marketReferences {
      ...MarketReferenceFragment
    }
    operation {
      ...ActorFragment
    }
    owner {
      ...ActorFragment
    }
    recommendations
    reportDate
    reporter {
      ...ActorFragment
    }
    reportingCurrency
    reports {
      ...AdjustmentReportFragment
    }
    stakeholderReferences {
      ...StakeholderReferenceFragment
    }
    status
    statusHistory {
      ...AdjustmentStatusChangeFragment
    }
    transitions {
      ...AdjustmentTransitionFragment
    }
    unpublishedChanges
    zone {
      ...ZoneFragment
    }
  }
}
Variables
{"data": AddAdjustmentAirframePartDamageInput}
Response
{
  "data": {
    "addAdjustmentAirframePartDamage": {
      "actions": [AdjustmentAction],
      "airframes": [AdjustmentAirframe],
      "allocations": [AdjustmentAllocation],
      "categories": ["aircraft_hull"],
      "collaborators": [Actor],
      "costsExpenses": AdjustmentCostsExpenses,
      "creationDate": "2007-12-03T10:15:30Z",
      "documents": [FileMetadata],
      "executiveSummary": {},
      "expert": Actor,
      "fees": AdjustmentFees,
      "flights": [AdjustmentFlight],
      "id": "xyz789",
      "images": [FileMetadata],
      "indemnity": AdjustmentIndemnity,
      "labels": [AdjustmentLabel],
      "lastUpdateDate": "2007-12-03T10:15:30Z",
      "legalEntities": AdjustmentLegalEntities,
      "lossDate": "2007-12-03T10:15:30Z",
      "lossLocation": Location,
      "lossNotice": LossNotice,
      "marketReferences": [MarketReference],
      "operation": Actor,
      "owner": Actor,
      "recommendations": {},
      "reportDate": "2007-12-03T10:15:30Z",
      "reporter": Actor,
      "reportingCurrency": "abc123",
      "reports": [AdjustmentReport],
      "stakeholderReferences": [StakeholderReference],
      "status": "abeyance",
      "statusHistory": [AdjustmentStatusChange],
      "transitions": [AdjustmentTransition],
      "unpublishedChanges": true,
      "zone": Zone
    }
  }
}

addAdjustmentCollaborator

Description

Add a Collaborator to an Adjustment

Response

Returns an Adjustment!

Arguments
Name Description
data - AddAdjustmentCollaboratorInput!

Example

Query
mutation addAdjustmentCollaborator($data: AddAdjustmentCollaboratorInput!) {
  addAdjustmentCollaborator(data: $data) {
    actions {
      ...AdjustmentActionFragment
    }
    airframes {
      ...AdjustmentAirframeFragment
    }
    allocations {
      ...AdjustmentAllocationFragment
    }
    categories
    collaborators {
      ...ActorFragment
    }
    costsExpenses {
      ...AdjustmentCostsExpensesFragment
    }
    creationDate
    documents {
      ...FileMetadataFragment
    }
    executiveSummary
    expert {
      ...ActorFragment
    }
    fees {
      ...AdjustmentFeesFragment
    }
    flights {
      ...AdjustmentFlightFragment
    }
    id
    images {
      ...FileMetadataFragment
    }
    indemnity {
      ...AdjustmentIndemnityFragment
    }
    labels {
      ...AdjustmentLabelFragment
    }
    lastUpdateDate
    legalEntities {
      ...AdjustmentLegalEntitiesFragment
    }
    lossDate
    lossLocation {
      ...LocationFragment
    }
    lossNotice {
      ...LossNoticeFragment
    }
    marketReferences {
      ...MarketReferenceFragment
    }
    operation {
      ...ActorFragment
    }
    owner {
      ...ActorFragment
    }
    recommendations
    reportDate
    reporter {
      ...ActorFragment
    }
    reportingCurrency
    reports {
      ...AdjustmentReportFragment
    }
    stakeholderReferences {
      ...StakeholderReferenceFragment
    }
    status
    statusHistory {
      ...AdjustmentStatusChangeFragment
    }
    transitions {
      ...AdjustmentTransitionFragment
    }
    unpublishedChanges
    zone {
      ...ZoneFragment
    }
  }
}
Variables
{"data": AddAdjustmentCollaboratorInput}
Response
{
  "data": {
    "addAdjustmentCollaborator": {
      "actions": [AdjustmentAction],
      "airframes": [AdjustmentAirframe],
      "allocations": [AdjustmentAllocation],
      "categories": ["aircraft_hull"],
      "collaborators": [Actor],
      "costsExpenses": AdjustmentCostsExpenses,
      "creationDate": "2007-12-03T10:15:30Z",
      "documents": [FileMetadata],
      "executiveSummary": {},
      "expert": Actor,
      "fees": AdjustmentFees,
      "flights": [AdjustmentFlight],
      "id": "abc123",
      "images": [FileMetadata],
      "indemnity": AdjustmentIndemnity,
      "labels": [AdjustmentLabel],
      "lastUpdateDate": "2007-12-03T10:15:30Z",
      "legalEntities": AdjustmentLegalEntities,
      "lossDate": "2007-12-03T10:15:30Z",
      "lossLocation": Location,
      "lossNotice": LossNotice,
      "marketReferences": [MarketReference],
      "operation": Actor,
      "owner": Actor,
      "recommendations": {},
      "reportDate": "2007-12-03T10:15:30Z",
      "reporter": Actor,
      "reportingCurrency": "xyz789",
      "reports": [AdjustmentReport],
      "stakeholderReferences": [StakeholderReference],
      "status": "abeyance",
      "statusHistory": [AdjustmentStatusChange],
      "transitions": [AdjustmentTransition],
      "unpublishedChanges": true,
      "zone": Zone
    }
  }
}

addAdjustmentCompany

Description

Add a Company/Organisation to an Adjustment

Response

Returns an Adjustment!

Arguments
Name Description
data - AddAdjustmentCompanyInput!

Example

Query
mutation addAdjustmentCompany($data: AddAdjustmentCompanyInput!) {
  addAdjustmentCompany(data: $data) {
    actions {
      ...AdjustmentActionFragment
    }
    airframes {
      ...AdjustmentAirframeFragment
    }
    allocations {
      ...AdjustmentAllocationFragment
    }
    categories
    collaborators {
      ...ActorFragment
    }
    costsExpenses {
      ...AdjustmentCostsExpensesFragment
    }
    creationDate
    documents {
      ...FileMetadataFragment
    }
    executiveSummary
    expert {
      ...ActorFragment
    }
    fees {
      ...AdjustmentFeesFragment
    }
    flights {
      ...AdjustmentFlightFragment
    }
    id
    images {
      ...FileMetadataFragment
    }
    indemnity {
      ...AdjustmentIndemnityFragment
    }
    labels {
      ...AdjustmentLabelFragment
    }
    lastUpdateDate
    legalEntities {
      ...AdjustmentLegalEntitiesFragment
    }
    lossDate
    lossLocation {
      ...LocationFragment
    }
    lossNotice {
      ...LossNoticeFragment
    }
    marketReferences {
      ...MarketReferenceFragment
    }
    operation {
      ...ActorFragment
    }
    owner {
      ...ActorFragment
    }
    recommendations
    reportDate
    reporter {
      ...ActorFragment
    }
    reportingCurrency
    reports {
      ...AdjustmentReportFragment
    }
    stakeholderReferences {
      ...StakeholderReferenceFragment
    }
    status
    statusHistory {
      ...AdjustmentStatusChangeFragment
    }
    transitions {
      ...AdjustmentTransitionFragment
    }
    unpublishedChanges
    zone {
      ...ZoneFragment
    }
  }
}
Variables
{"data": AddAdjustmentCompanyInput}
Response
{
  "data": {
    "addAdjustmentCompany": {
      "actions": [AdjustmentAction],
      "airframes": [AdjustmentAirframe],
      "allocations": [AdjustmentAllocation],
      "categories": ["aircraft_hull"],
      "collaborators": [Actor],
      "costsExpenses": AdjustmentCostsExpenses,
      "creationDate": "2007-12-03T10:15:30Z",
      "documents": [FileMetadata],
      "executiveSummary": {},
      "expert": Actor,
      "fees": AdjustmentFees,
      "flights": [AdjustmentFlight],
      "id": "abc123",
      "images": [FileMetadata],
      "indemnity": AdjustmentIndemnity,
      "labels": [AdjustmentLabel],
      "lastUpdateDate": "2007-12-03T10:15:30Z",
      "legalEntities": AdjustmentLegalEntities,
      "lossDate": "2007-12-03T10:15:30Z",
      "lossLocation": Location,
      "lossNotice": LossNotice,
      "marketReferences": [MarketReference],
      "operation": Actor,
      "owner": Actor,
      "recommendations": {},
      "reportDate": "2007-12-03T10:15:30Z",
      "reporter": Actor,
      "reportingCurrency": "xyz789",
      "reports": [AdjustmentReport],
      "stakeholderReferences": [StakeholderReference],
      "status": "abeyance",
      "statusHistory": [AdjustmentStatusChange],
      "transitions": [AdjustmentTransition],
      "unpublishedChanges": false,
      "zone": Zone
    }
  }
}

addAdjustmentCostExpensePayment

Description

Add a Payment/Disbursement to an Adjustment

Response

Returns an Adjustment!

Arguments
Name Description
data - AddAdjustmentCostExpensePaymentInput!

Example

Query
mutation addAdjustmentCostExpensePayment($data: AddAdjustmentCostExpensePaymentInput!) {
  addAdjustmentCostExpensePayment(data: $data) {
    actions {
      ...AdjustmentActionFragment
    }
    airframes {
      ...AdjustmentAirframeFragment
    }
    allocations {
      ...AdjustmentAllocationFragment
    }
    categories
    collaborators {
      ...ActorFragment
    }
    costsExpenses {
      ...AdjustmentCostsExpensesFragment
    }
    creationDate
    documents {
      ...FileMetadataFragment
    }
    executiveSummary
    expert {
      ...ActorFragment
    }
    fees {
      ...AdjustmentFeesFragment
    }
    flights {
      ...AdjustmentFlightFragment
    }
    id
    images {
      ...FileMetadataFragment
    }
    indemnity {
      ...AdjustmentIndemnityFragment
    }
    labels {
      ...AdjustmentLabelFragment
    }
    lastUpdateDate
    legalEntities {
      ...AdjustmentLegalEntitiesFragment
    }
    lossDate
    lossLocation {
      ...LocationFragment
    }
    lossNotice {
      ...LossNoticeFragment
    }
    marketReferences {
      ...MarketReferenceFragment
    }
    operation {
      ...ActorFragment
    }
    owner {
      ...ActorFragment
    }
    recommendations
    reportDate
    reporter {
      ...ActorFragment
    }
    reportingCurrency
    reports {
      ...AdjustmentReportFragment
    }
    stakeholderReferences {
      ...StakeholderReferenceFragment
    }
    status
    statusHistory {
      ...AdjustmentStatusChangeFragment
    }
    transitions {
      ...AdjustmentTransitionFragment
    }
    unpublishedChanges
    zone {
      ...ZoneFragment
    }
  }
}
Variables
{"data": AddAdjustmentCostExpensePaymentInput}
Response
{
  "data": {
    "addAdjustmentCostExpensePayment": {
      "actions": [AdjustmentAction],
      "airframes": [AdjustmentAirframe],
      "allocations": [AdjustmentAllocation],
      "categories": ["aircraft_hull"],
      "collaborators": [Actor],
      "costsExpenses": AdjustmentCostsExpenses,
      "creationDate": "2007-12-03T10:15:30Z",
      "documents": [FileMetadata],
      "executiveSummary": {},
      "expert": Actor,
      "fees": AdjustmentFees,
      "flights": [AdjustmentFlight],
      "id": "abc123",
      "images": [FileMetadata],
      "indemnity": AdjustmentIndemnity,
      "labels": [AdjustmentLabel],
      "lastUpdateDate": "2007-12-03T10:15:30Z",
      "legalEntities": AdjustmentLegalEntities,
      "lossDate": "2007-12-03T10:15:30Z",
      "lossLocation": Location,
      "lossNotice": LossNotice,
      "marketReferences": [MarketReference],
      "operation": Actor,
      "owner": Actor,
      "recommendations": {},
      "reportDate": "2007-12-03T10:15:30Z",
      "reporter": Actor,
      "reportingCurrency": "abc123",
      "reports": [AdjustmentReport],
      "stakeholderReferences": [StakeholderReference],
      "status": "abeyance",
      "statusHistory": [AdjustmentStatusChange],
      "transitions": [AdjustmentTransition],
      "unpublishedChanges": false,
      "zone": Zone
    }
  }
}

addAdjustmentCostExpenseReserve

Description

Add a new Adjustment Cost & Expense Reserve

Response

Returns an Adjustment!

Arguments
Name Description
data - AddAdjustmentCostExpenseReserveInput!

Example

Query
mutation addAdjustmentCostExpenseReserve($data: AddAdjustmentCostExpenseReserveInput!) {
  addAdjustmentCostExpenseReserve(data: $data) {
    actions {
      ...AdjustmentActionFragment
    }
    airframes {
      ...AdjustmentAirframeFragment
    }
    allocations {
      ...AdjustmentAllocationFragment
    }
    categories
    collaborators {
      ...ActorFragment
    }
    costsExpenses {
      ...AdjustmentCostsExpensesFragment
    }
    creationDate
    documents {
      ...FileMetadataFragment
    }
    executiveSummary
    expert {
      ...ActorFragment
    }
    fees {
      ...AdjustmentFeesFragment
    }
    flights {
      ...AdjustmentFlightFragment
    }
    id
    images {
      ...FileMetadataFragment
    }
    indemnity {
      ...AdjustmentIndemnityFragment
    }
    labels {
      ...AdjustmentLabelFragment
    }
    lastUpdateDate
    legalEntities {
      ...AdjustmentLegalEntitiesFragment
    }
    lossDate
    lossLocation {
      ...LocationFragment
    }
    lossNotice {
      ...LossNoticeFragment
    }
    marketReferences {
      ...MarketReferenceFragment
    }
    operation {
      ...ActorFragment
    }
    owner {
      ...ActorFragment
    }
    recommendations
    reportDate
    reporter {
      ...ActorFragment
    }
    reportingCurrency
    reports {
      ...AdjustmentReportFragment
    }
    stakeholderReferences {
      ...StakeholderReferenceFragment
    }
    status
    statusHistory {
      ...AdjustmentStatusChangeFragment
    }
    transitions {
      ...AdjustmentTransitionFragment
    }
    unpublishedChanges
    zone {
      ...ZoneFragment
    }
  }
}
Variables
{"data": AddAdjustmentCostExpenseReserveInput}
Response
{
  "data": {
    "addAdjustmentCostExpenseReserve": {
      "actions": [AdjustmentAction],
      "airframes": [AdjustmentAirframe],
      "allocations": [AdjustmentAllocation],
      "categories": ["aircraft_hull"],
      "collaborators": [Actor],
      "costsExpenses": AdjustmentCostsExpenses,
      "creationDate": "2007-12-03T10:15:30Z",
      "documents": [FileMetadata],
      "executiveSummary": {},
      "expert": Actor,
      "fees": AdjustmentFees,
      "flights": [AdjustmentFlight],
      "id": "xyz789",
      "images": [FileMetadata],
      "indemnity": AdjustmentIndemnity,
      "labels": [AdjustmentLabel],
      "lastUpdateDate": "2007-12-03T10:15:30Z",
      "legalEntities": AdjustmentLegalEntities,
      "lossDate": "2007-12-03T10:15:30Z",
      "lossLocation": Location,
      "lossNotice": LossNotice,
      "marketReferences": [MarketReference],
      "operation": Actor,
      "owner": Actor,
      "recommendations": {},
      "reportDate": "2007-12-03T10:15:30Z",
      "reporter": Actor,
      "reportingCurrency": "xyz789",
      "reports": [AdjustmentReport],
      "stakeholderReferences": [StakeholderReference],
      "status": "abeyance",
      "statusHistory": [AdjustmentStatusChange],
      "transitions": [AdjustmentTransition],
      "unpublishedChanges": true,
      "zone": Zone
    }
  }
}

addAdjustmentCustomLabel

Description

Add a custom Label to an Adjustment

Response

Returns an Adjustment!

Arguments
Name Description
data - AddAdjustmentLabelInput!

Example

Query
mutation addAdjustmentCustomLabel($data: AddAdjustmentLabelInput!) {
  addAdjustmentCustomLabel(data: $data) {
    actions {
      ...AdjustmentActionFragment
    }
    airframes {
      ...AdjustmentAirframeFragment
    }
    allocations {
      ...AdjustmentAllocationFragment
    }
    categories
    collaborators {
      ...ActorFragment
    }
    costsExpenses {
      ...AdjustmentCostsExpensesFragment
    }
    creationDate
    documents {
      ...FileMetadataFragment
    }
    executiveSummary
    expert {
      ...ActorFragment
    }
    fees {
      ...AdjustmentFeesFragment
    }
    flights {
      ...AdjustmentFlightFragment
    }
    id
    images {
      ...FileMetadataFragment
    }
    indemnity {
      ...AdjustmentIndemnityFragment
    }
    labels {
      ...AdjustmentLabelFragment
    }
    lastUpdateDate
    legalEntities {
      ...AdjustmentLegalEntitiesFragment
    }
    lossDate
    lossLocation {
      ...LocationFragment
    }
    lossNotice {
      ...LossNoticeFragment
    }
    marketReferences {
      ...MarketReferenceFragment
    }
    operation {
      ...ActorFragment
    }
    owner {
      ...ActorFragment
    }
    recommendations
    reportDate
    reporter {
      ...ActorFragment
    }
    reportingCurrency
    reports {
      ...AdjustmentReportFragment
    }
    stakeholderReferences {
      ...StakeholderReferenceFragment
    }
    status
    statusHistory {
      ...AdjustmentStatusChangeFragment
    }
    transitions {
      ...AdjustmentTransitionFragment
    }
    unpublishedChanges
    zone {
      ...ZoneFragment
    }
  }
}
Variables
{"data": AddAdjustmentLabelInput}
Response
{
  "data": {
    "addAdjustmentCustomLabel": {
      "actions": [AdjustmentAction],
      "airframes": [AdjustmentAirframe],
      "allocations": [AdjustmentAllocation],
      "categories": ["aircraft_hull"],
      "collaborators": [Actor],
      "costsExpenses": AdjustmentCostsExpenses,
      "creationDate": "2007-12-03T10:15:30Z",
      "documents": [FileMetadata],
      "executiveSummary": {},
      "expert": Actor,
      "fees": AdjustmentFees,
      "flights": [AdjustmentFlight],
      "id": "abc123",
      "images": [FileMetadata],
      "indemnity": AdjustmentIndemnity,
      "labels": [AdjustmentLabel],
      "lastUpdateDate": "2007-12-03T10:15:30Z",
      "legalEntities": AdjustmentLegalEntities,
      "lossDate": "2007-12-03T10:15:30Z",
      "lossLocation": Location,
      "lossNotice": LossNotice,
      "marketReferences": [MarketReference],
      "operation": Actor,
      "owner": Actor,
      "recommendations": {},
      "reportDate": "2007-12-03T10:15:30Z",
      "reporter": Actor,
      "reportingCurrency": "xyz789",
      "reports": [AdjustmentReport],
      "stakeholderReferences": [StakeholderReference],
      "status": "abeyance",
      "statusHistory": [AdjustmentStatusChange],
      "transitions": [AdjustmentTransition],
      "unpublishedChanges": true,
      "zone": Zone
    }
  }
}

addAdjustmentFeePayment

Description

Add a new Adjustment Fee Payment/Disbursement

Response

Returns an Adjustment!

Arguments
Name Description
data - AddAdjustmentFeePaymentInput!

Example

Query
mutation addAdjustmentFeePayment($data: AddAdjustmentFeePaymentInput!) {
  addAdjustmentFeePayment(data: $data) {
    actions {
      ...AdjustmentActionFragment
    }
    airframes {
      ...AdjustmentAirframeFragment
    }
    allocations {
      ...AdjustmentAllocationFragment
    }
    categories
    collaborators {
      ...ActorFragment
    }
    costsExpenses {
      ...AdjustmentCostsExpensesFragment
    }
    creationDate
    documents {
      ...FileMetadataFragment
    }
    executiveSummary
    expert {
      ...ActorFragment
    }
    fees {
      ...AdjustmentFeesFragment
    }
    flights {
      ...AdjustmentFlightFragment
    }
    id
    images {
      ...FileMetadataFragment
    }
    indemnity {
      ...AdjustmentIndemnityFragment
    }
    labels {
      ...AdjustmentLabelFragment
    }
    lastUpdateDate
    legalEntities {
      ...AdjustmentLegalEntitiesFragment
    }
    lossDate
    lossLocation {
      ...LocationFragment
    }
    lossNotice {
      ...LossNoticeFragment
    }
    marketReferences {
      ...MarketReferenceFragment
    }
    operation {
      ...ActorFragment
    }
    owner {
      ...ActorFragment
    }
    recommendations
    reportDate
    reporter {
      ...ActorFragment
    }
    reportingCurrency
    reports {
      ...AdjustmentReportFragment
    }
    stakeholderReferences {
      ...StakeholderReferenceFragment
    }
    status
    statusHistory {
      ...AdjustmentStatusChangeFragment
    }
    transitions {
      ...AdjustmentTransitionFragment
    }
    unpublishedChanges
    zone {
      ...ZoneFragment
    }
  }
}
Variables
{"data": AddAdjustmentFeePaymentInput}
Response
{
  "data": {
    "addAdjustmentFeePayment": {
      "actions": [AdjustmentAction],
      "airframes": [AdjustmentAirframe],
      "allocations": [AdjustmentAllocation],
      "categories": ["aircraft_hull"],
      "collaborators": [Actor],
      "costsExpenses": AdjustmentCostsExpenses,
      "creationDate": "2007-12-03T10:15:30Z",
      "documents": [FileMetadata],
      "executiveSummary": {},
      "expert": Actor,
      "fees": AdjustmentFees,
      "flights": [AdjustmentFlight],
      "id": "xyz789",
      "images": [FileMetadata],
      "indemnity": AdjustmentIndemnity,
      "labels": [AdjustmentLabel],
      "lastUpdateDate": "2007-12-03T10:15:30Z",
      "legalEntities": AdjustmentLegalEntities,
      "lossDate": "2007-12-03T10:15:30Z",
      "lossLocation": Location,
      "lossNotice": LossNotice,
      "marketReferences": [MarketReference],
      "operation": Actor,
      "owner": Actor,
      "recommendations": {},
      "reportDate": "2007-12-03T10:15:30Z",
      "reporter": Actor,
      "reportingCurrency": "xyz789",
      "reports": [AdjustmentReport],
      "stakeholderReferences": [StakeholderReference],
      "status": "abeyance",
      "statusHistory": [AdjustmentStatusChange],
      "transitions": [AdjustmentTransition],
      "unpublishedChanges": true,
      "zone": Zone
    }
  }
}

addAdjustmentFeeReserve

Description

Add a new Adjustment Fee Reserve

Response

Returns an Adjustment!

Arguments
Name Description
data - AddAdjustmentFeeReserveInput!

Example

Query
mutation addAdjustmentFeeReserve($data: AddAdjustmentFeeReserveInput!) {
  addAdjustmentFeeReserve(data: $data) {
    actions {
      ...AdjustmentActionFragment
    }
    airframes {
      ...AdjustmentAirframeFragment
    }
    allocations {
      ...AdjustmentAllocationFragment
    }
    categories
    collaborators {
      ...ActorFragment
    }
    costsExpenses {
      ...AdjustmentCostsExpensesFragment
    }
    creationDate
    documents {
      ...FileMetadataFragment
    }
    executiveSummary
    expert {
      ...ActorFragment
    }
    fees {
      ...AdjustmentFeesFragment
    }
    flights {
      ...AdjustmentFlightFragment
    }
    id
    images {
      ...FileMetadataFragment
    }
    indemnity {
      ...AdjustmentIndemnityFragment
    }
    labels {
      ...AdjustmentLabelFragment
    }
    lastUpdateDate
    legalEntities {
      ...AdjustmentLegalEntitiesFragment
    }
    lossDate
    lossLocation {
      ...LocationFragment
    }
    lossNotice {
      ...LossNoticeFragment
    }
    marketReferences {
      ...MarketReferenceFragment
    }
    operation {
      ...ActorFragment
    }
    owner {
      ...ActorFragment
    }
    recommendations
    reportDate
    reporter {
      ...ActorFragment
    }
    reportingCurrency
    reports {
      ...AdjustmentReportFragment
    }
    stakeholderReferences {
      ...StakeholderReferenceFragment
    }
    status
    statusHistory {
      ...AdjustmentStatusChangeFragment
    }
    transitions {
      ...AdjustmentTransitionFragment
    }
    unpublishedChanges
    zone {
      ...ZoneFragment
    }
  }
}
Variables
{"data": AddAdjustmentFeeReserveInput}
Response
{
  "data": {
    "addAdjustmentFeeReserve": {
      "actions": [AdjustmentAction],
      "airframes": [AdjustmentAirframe],
      "allocations": [AdjustmentAllocation],
      "categories": ["aircraft_hull"],
      "collaborators": [Actor],
      "costsExpenses": AdjustmentCostsExpenses,
      "creationDate": "2007-12-03T10:15:30Z",
      "documents": [FileMetadata],
      "executiveSummary": {},
      "expert": Actor,
      "fees": AdjustmentFees,
      "flights": [AdjustmentFlight],
      "id": "abc123",
      "images": [FileMetadata],
      "indemnity": AdjustmentIndemnity,
      "labels": [AdjustmentLabel],
      "lastUpdateDate": "2007-12-03T10:15:30Z",
      "legalEntities": AdjustmentLegalEntities,
      "lossDate": "2007-12-03T10:15:30Z",
      "lossLocation": Location,
      "lossNotice": LossNotice,
      "marketReferences": [MarketReference],
      "operation": Actor,
      "owner": Actor,
      "recommendations": {},
      "reportDate": "2007-12-03T10:15:30Z",
      "reporter": Actor,
      "reportingCurrency": "xyz789",
      "reports": [AdjustmentReport],
      "stakeholderReferences": [StakeholderReference],
      "status": "abeyance",
      "statusHistory": [AdjustmentStatusChange],
      "transitions": [AdjustmentTransition],
      "unpublishedChanges": false,
      "zone": Zone
    }
  }
}

addAdjustmentFlight

Description

Add a Flight to an Adjustment

Response

Returns an Adjustment!

Arguments
Name Description
data - AddAdjustmentFlightInput!

Example

Query
mutation addAdjustmentFlight($data: AddAdjustmentFlightInput!) {
  addAdjustmentFlight(data: $data) {
    actions {
      ...AdjustmentActionFragment
    }
    airframes {
      ...AdjustmentAirframeFragment
    }
    allocations {
      ...AdjustmentAllocationFragment
    }
    categories
    collaborators {
      ...ActorFragment
    }
    costsExpenses {
      ...AdjustmentCostsExpensesFragment
    }
    creationDate
    documents {
      ...FileMetadataFragment
    }
    executiveSummary
    expert {
      ...ActorFragment
    }
    fees {
      ...AdjustmentFeesFragment
    }
    flights {
      ...AdjustmentFlightFragment
    }
    id
    images {
      ...FileMetadataFragment
    }
    indemnity {
      ...AdjustmentIndemnityFragment
    }
    labels {
      ...AdjustmentLabelFragment
    }
    lastUpdateDate
    legalEntities {
      ...AdjustmentLegalEntitiesFragment
    }
    lossDate
    lossLocation {
      ...LocationFragment
    }
    lossNotice {
      ...LossNoticeFragment
    }
    marketReferences {
      ...MarketReferenceFragment
    }
    operation {
      ...ActorFragment
    }
    owner {
      ...ActorFragment
    }
    recommendations
    reportDate
    reporter {
      ...ActorFragment
    }
    reportingCurrency
    reports {
      ...AdjustmentReportFragment
    }
    stakeholderReferences {
      ...StakeholderReferenceFragment
    }
    status
    statusHistory {
      ...AdjustmentStatusChangeFragment
    }
    transitions {
      ...AdjustmentTransitionFragment
    }
    unpublishedChanges
    zone {
      ...ZoneFragment
    }
  }
}
Variables
{"data": AddAdjustmentFlightInput}
Response
{
  "data": {
    "addAdjustmentFlight": {
      "actions": [AdjustmentAction],
      "airframes": [AdjustmentAirframe],
      "allocations": [AdjustmentAllocation],
      "categories": ["aircraft_hull"],
      "collaborators": [Actor],
      "costsExpenses": AdjustmentCostsExpenses,
      "creationDate": "2007-12-03T10:15:30Z",
      "documents": [FileMetadata],
      "executiveSummary": {},
      "expert": Actor,
      "fees": AdjustmentFees,
      "flights": [AdjustmentFlight],
      "id": "xyz789",
      "images": [FileMetadata],
      "indemnity": AdjustmentIndemnity,
      "labels": [AdjustmentLabel],
      "lastUpdateDate": "2007-12-03T10:15:30Z",
      "legalEntities": AdjustmentLegalEntities,
      "lossDate": "2007-12-03T10:15:30Z",
      "lossLocation": Location,
      "lossNotice": LossNotice,
      "marketReferences": [MarketReference],
      "operation": Actor,
      "owner": Actor,
      "recommendations": {},
      "reportDate": "2007-12-03T10:15:30Z",
      "reporter": Actor,
      "reportingCurrency": "xyz789",
      "reports": [AdjustmentReport],
      "stakeholderReferences": [StakeholderReference],
      "status": "abeyance",
      "statusHistory": [AdjustmentStatusChange],
      "transitions": [AdjustmentTransition],
      "unpublishedChanges": false,
      "zone": Zone
    }
  }
}

addAdjustmentIndemnityPayment

Description

Add an Adjustment Indemnity Payment/Disbursement

Response

Returns an Adjustment!

Arguments
Name Description
data - AddAdjustmentIndemnityPaymentInput!

Example

Query
mutation addAdjustmentIndemnityPayment($data: AddAdjustmentIndemnityPaymentInput!) {
  addAdjustmentIndemnityPayment(data: $data) {
    actions {
      ...AdjustmentActionFragment
    }
    airframes {
      ...AdjustmentAirframeFragment
    }
    allocations {
      ...AdjustmentAllocationFragment
    }
    categories
    collaborators {
      ...ActorFragment
    }
    costsExpenses {
      ...AdjustmentCostsExpensesFragment
    }
    creationDate
    documents {
      ...FileMetadataFragment
    }
    executiveSummary
    expert {
      ...ActorFragment
    }
    fees {
      ...AdjustmentFeesFragment
    }
    flights {
      ...AdjustmentFlightFragment
    }
    id
    images {
      ...FileMetadataFragment
    }
    indemnity {
      ...AdjustmentIndemnityFragment
    }
    labels {
      ...AdjustmentLabelFragment
    }
    lastUpdateDate
    legalEntities {
      ...AdjustmentLegalEntitiesFragment
    }
    lossDate
    lossLocation {
      ...LocationFragment
    }
    lossNotice {
      ...LossNoticeFragment
    }
    marketReferences {
      ...MarketReferenceFragment
    }
    operation {
      ...ActorFragment
    }
    owner {
      ...ActorFragment
    }
    recommendations
    reportDate
    reporter {
      ...ActorFragment
    }
    reportingCurrency
    reports {
      ...AdjustmentReportFragment
    }
    stakeholderReferences {
      ...StakeholderReferenceFragment
    }
    status
    statusHistory {
      ...AdjustmentStatusChangeFragment
    }
    transitions {
      ...AdjustmentTransitionFragment
    }
    unpublishedChanges
    zone {
      ...ZoneFragment
    }
  }
}
Variables
{"data": AddAdjustmentIndemnityPaymentInput}
Response
{
  "data": {
    "addAdjustmentIndemnityPayment": {
      "actions": [AdjustmentAction],
      "airframes": [AdjustmentAirframe],
      "allocations": [AdjustmentAllocation],
      "categories": ["aircraft_hull"],
      "collaborators": [Actor],
      "costsExpenses": AdjustmentCostsExpenses,
      "creationDate": "2007-12-03T10:15:30Z",
      "documents": [FileMetadata],
      "executiveSummary": {},
      "expert": Actor,
      "fees": AdjustmentFees,
      "flights": [AdjustmentFlight],
      "id": "xyz789",
      "images": [FileMetadata],
      "indemnity": AdjustmentIndemnity,
      "labels": [AdjustmentLabel],
      "lastUpdateDate": "2007-12-03T10:15:30Z",
      "legalEntities": AdjustmentLegalEntities,
      "lossDate": "2007-12-03T10:15:30Z",
      "lossLocation": Location,
      "lossNotice": LossNotice,
      "marketReferences": [MarketReference],
      "operation": Actor,
      "owner": Actor,
      "recommendations": {},
      "reportDate": "2007-12-03T10:15:30Z",
      "reporter": Actor,
      "reportingCurrency": "xyz789",
      "reports": [AdjustmentReport],
      "stakeholderReferences": [StakeholderReference],
      "status": "abeyance",
      "statusHistory": [AdjustmentStatusChange],
      "transitions": [AdjustmentTransition],
      "unpublishedChanges": false,
      "zone": Zone
    }
  }
}

addAdjustmentIndemnityReserve

Description

Add a new Adjustment Indemnity Reserve

Response

Returns an Adjustment!

Arguments
Name Description
data - AddAdjustmentIndemnityReserveInput!

Example

Query
mutation addAdjustmentIndemnityReserve($data: AddAdjustmentIndemnityReserveInput!) {
  addAdjustmentIndemnityReserve(data: $data) {
    actions {
      ...AdjustmentActionFragment
    }
    airframes {
      ...AdjustmentAirframeFragment
    }
    allocations {
      ...AdjustmentAllocationFragment
    }
    categories
    collaborators {
      ...ActorFragment
    }
    costsExpenses {
      ...AdjustmentCostsExpensesFragment
    }
    creationDate
    documents {
      ...FileMetadataFragment
    }
    executiveSummary
    expert {
      ...ActorFragment
    }
    fees {
      ...AdjustmentFeesFragment
    }
    flights {
      ...AdjustmentFlightFragment
    }
    id
    images {
      ...FileMetadataFragment
    }
    indemnity {
      ...AdjustmentIndemnityFragment
    }
    labels {
      ...AdjustmentLabelFragment
    }
    lastUpdateDate
    legalEntities {
      ...AdjustmentLegalEntitiesFragment
    }
    lossDate
    lossLocation {
      ...LocationFragment
    }
    lossNotice {
      ...LossNoticeFragment
    }
    marketReferences {
      ...MarketReferenceFragment
    }
    operation {
      ...ActorFragment
    }
    owner {
      ...ActorFragment
    }
    recommendations
    reportDate
    reporter {
      ...ActorFragment
    }
    reportingCurrency
    reports {
      ...AdjustmentReportFragment
    }
    stakeholderReferences {
      ...StakeholderReferenceFragment
    }
    status
    statusHistory {
      ...AdjustmentStatusChangeFragment
    }
    transitions {
      ...AdjustmentTransitionFragment
    }
    unpublishedChanges
    zone {
      ...ZoneFragment
    }
  }
}
Variables
{"data": AddAdjustmentIndemnityReserveInput}
Response
{
  "data": {
    "addAdjustmentIndemnityReserve": {
      "actions": [AdjustmentAction],
      "airframes": [AdjustmentAirframe],
      "allocations": [AdjustmentAllocation],
      "categories": ["aircraft_hull"],
      "collaborators": [Actor],
      "costsExpenses": AdjustmentCostsExpenses,
      "creationDate": "2007-12-03T10:15:30Z",
      "documents": [FileMetadata],
      "executiveSummary": {},
      "expert": Actor,
      "fees": AdjustmentFees,
      "flights": [AdjustmentFlight],
      "id": "abc123",
      "images": [FileMetadata],
      "indemnity": AdjustmentIndemnity,
      "labels": [AdjustmentLabel],
      "lastUpdateDate": "2007-12-03T10:15:30Z",
      "legalEntities": AdjustmentLegalEntities,
      "lossDate": "2007-12-03T10:15:30Z",
      "lossLocation": Location,
      "lossNotice": LossNotice,
      "marketReferences": [MarketReference],
      "operation": Actor,
      "owner": Actor,
      "recommendations": {},
      "reportDate": "2007-12-03T10:15:30Z",
      "reporter": Actor,
      "reportingCurrency": "xyz789",
      "reports": [AdjustmentReport],
      "stakeholderReferences": [StakeholderReference],
      "status": "abeyance",
      "statusHistory": [AdjustmentStatusChange],
      "transitions": [AdjustmentTransition],
      "unpublishedChanges": false,
      "zone": Zone
    }
  }
}

addAdjustmentIndividual

Description

Add an Individual to an Adjustment

Response

Returns an Adjustment!

Arguments
Name Description
data - AddAdjustmentIndividualInput!

Example

Query
mutation addAdjustmentIndividual($data: AddAdjustmentIndividualInput!) {
  addAdjustmentIndividual(data: $data) {
    actions {
      ...AdjustmentActionFragment
    }
    airframes {
      ...AdjustmentAirframeFragment
    }
    allocations {
      ...AdjustmentAllocationFragment
    }
    categories
    collaborators {
      ...ActorFragment
    }
    costsExpenses {
      ...AdjustmentCostsExpensesFragment
    }
    creationDate
    documents {
      ...FileMetadataFragment
    }
    executiveSummary
    expert {
      ...ActorFragment
    }
    fees {
      ...AdjustmentFeesFragment
    }
    flights {
      ...AdjustmentFlightFragment
    }
    id
    images {
      ...FileMetadataFragment
    }
    indemnity {
      ...AdjustmentIndemnityFragment
    }
    labels {
      ...AdjustmentLabelFragment
    }
    lastUpdateDate
    legalEntities {
      ...AdjustmentLegalEntitiesFragment
    }
    lossDate
    lossLocation {
      ...LocationFragment
    }
    lossNotice {
      ...LossNoticeFragment
    }
    marketReferences {
      ...MarketReferenceFragment
    }
    operation {
      ...ActorFragment
    }
    owner {
      ...ActorFragment
    }
    recommendations
    reportDate
    reporter {
      ...ActorFragment
    }
    reportingCurrency
    reports {
      ...AdjustmentReportFragment
    }
    stakeholderReferences {
      ...StakeholderReferenceFragment
    }
    status
    statusHistory {
      ...AdjustmentStatusChangeFragment
    }
    transitions {
      ...AdjustmentTransitionFragment
    }
    unpublishedChanges
    zone {
      ...ZoneFragment
    }
  }
}
Variables
{"data": AddAdjustmentIndividualInput}
Response
{
  "data": {
    "addAdjustmentIndividual": {
      "actions": [AdjustmentAction],
      "airframes": [AdjustmentAirframe],
      "allocations": [AdjustmentAllocation],
      "categories": ["aircraft_hull"],
      "collaborators": [Actor],
      "costsExpenses": AdjustmentCostsExpenses,
      "creationDate": "2007-12-03T10:15:30Z",
      "documents": [FileMetadata],
      "executiveSummary": {},
      "expert": Actor,
      "fees": AdjustmentFees,
      "flights": [AdjustmentFlight],
      "id": "abc123",
      "images": [FileMetadata],
      "indemnity": AdjustmentIndemnity,
      "labels": [AdjustmentLabel],
      "lastUpdateDate": "2007-12-03T10:15:30Z",
      "legalEntities": AdjustmentLegalEntities,
      "lossDate": "2007-12-03T10:15:30Z",
      "lossLocation": Location,
      "lossNotice": LossNotice,
      "marketReferences": [MarketReference],
      "operation": Actor,
      "owner": Actor,
      "recommendations": {},
      "reportDate": "2007-12-03T10:15:30Z",
      "reporter": Actor,
      "reportingCurrency": "xyz789",
      "reports": [AdjustmentReport],
      "stakeholderReferences": [StakeholderReference],
      "status": "abeyance",
      "statusHistory": [AdjustmentStatusChange],
      "transitions": [AdjustmentTransition],
      "unpublishedChanges": true,
      "zone": Zone
    }
  }
}

addAdjustmentManualFlight

Description

Add a manual Flight to an Adjustment

Response

Returns an Adjustment!

Arguments
Name Description
data - AddAdjustmentManualFlightInput!

Example

Query
mutation addAdjustmentManualFlight($data: AddAdjustmentManualFlightInput!) {
  addAdjustmentManualFlight(data: $data) {
    actions {
      ...AdjustmentActionFragment
    }
    airframes {
      ...AdjustmentAirframeFragment
    }
    allocations {
      ...AdjustmentAllocationFragment
    }
    categories
    collaborators {
      ...ActorFragment
    }
    costsExpenses {
      ...AdjustmentCostsExpensesFragment
    }
    creationDate
    documents {
      ...FileMetadataFragment
    }
    executiveSummary
    expert {
      ...ActorFragment
    }
    fees {
      ...AdjustmentFeesFragment
    }
    flights {
      ...AdjustmentFlightFragment
    }
    id
    images {
      ...FileMetadataFragment
    }
    indemnity {
      ...AdjustmentIndemnityFragment
    }
    labels {
      ...AdjustmentLabelFragment
    }
    lastUpdateDate
    legalEntities {
      ...AdjustmentLegalEntitiesFragment
    }
    lossDate
    lossLocation {
      ...LocationFragment
    }
    lossNotice {
      ...LossNoticeFragment
    }
    marketReferences {
      ...MarketReferenceFragment
    }
    operation {
      ...ActorFragment
    }
    owner {
      ...ActorFragment
    }
    recommendations
    reportDate
    reporter {
      ...ActorFragment
    }
    reportingCurrency
    reports {
      ...AdjustmentReportFragment
    }
    stakeholderReferences {
      ...StakeholderReferenceFragment
    }
    status
    statusHistory {
      ...AdjustmentStatusChangeFragment
    }
    transitions {
      ...AdjustmentTransitionFragment
    }
    unpublishedChanges
    zone {
      ...ZoneFragment
    }
  }
}
Variables
{"data": AddAdjustmentManualFlightInput}
Response
{
  "data": {
    "addAdjustmentManualFlight": {
      "actions": [AdjustmentAction],
      "airframes": [AdjustmentAirframe],
      "allocations": [AdjustmentAllocation],
      "categories": ["aircraft_hull"],
      "collaborators": [Actor],
      "costsExpenses": AdjustmentCostsExpenses,
      "creationDate": "2007-12-03T10:15:30Z",
      "documents": [FileMetadata],
      "executiveSummary": {},
      "expert": Actor,
      "fees": AdjustmentFees,
      "flights": [AdjustmentFlight],
      "id": "xyz789",
      "images": [FileMetadata],
      "indemnity": AdjustmentIndemnity,
      "labels": [AdjustmentLabel],
      "lastUpdateDate": "2007-12-03T10:15:30Z",
      "legalEntities": AdjustmentLegalEntities,
      "lossDate": "2007-12-03T10:15:30Z",
      "lossLocation": Location,
      "lossNotice": LossNotice,
      "marketReferences": [MarketReference],
      "operation": Actor,
      "owner": Actor,
      "recommendations": {},
      "reportDate": "2007-12-03T10:15:30Z",
      "reporter": Actor,
      "reportingCurrency": "xyz789",
      "reports": [AdjustmentReport],
      "stakeholderReferences": [StakeholderReference],
      "status": "abeyance",
      "statusHistory": [AdjustmentStatusChange],
      "transitions": [AdjustmentTransition],
      "unpublishedChanges": false,
      "zone": Zone
    }
  }
}

addAdjustmentMarketReference

Response

Returns an Adjustment!

Arguments
Name Description
data - AddMarketReferenceInput!

Example

Query
mutation addAdjustmentMarketReference($data: AddMarketReferenceInput!) {
  addAdjustmentMarketReference(data: $data) {
    actions {
      ...AdjustmentActionFragment
    }
    airframes {
      ...AdjustmentAirframeFragment
    }
    allocations {
      ...AdjustmentAllocationFragment
    }
    categories
    collaborators {
      ...ActorFragment
    }
    costsExpenses {
      ...AdjustmentCostsExpensesFragment
    }
    creationDate
    documents {
      ...FileMetadataFragment
    }
    executiveSummary
    expert {
      ...ActorFragment
    }
    fees {
      ...AdjustmentFeesFragment
    }
    flights {
      ...AdjustmentFlightFragment
    }
    id
    images {
      ...FileMetadataFragment
    }
    indemnity {
      ...AdjustmentIndemnityFragment
    }
    labels {
      ...AdjustmentLabelFragment
    }
    lastUpdateDate
    legalEntities {
      ...AdjustmentLegalEntitiesFragment
    }
    lossDate
    lossLocation {
      ...LocationFragment
    }
    lossNotice {
      ...LossNoticeFragment
    }
    marketReferences {
      ...MarketReferenceFragment
    }
    operation {
      ...ActorFragment
    }
    owner {
      ...ActorFragment
    }
    recommendations
    reportDate
    reporter {
      ...ActorFragment
    }
    reportingCurrency
    reports {
      ...AdjustmentReportFragment
    }
    stakeholderReferences {
      ...StakeholderReferenceFragment
    }
    status
    statusHistory {
      ...AdjustmentStatusChangeFragment
    }
    transitions {
      ...AdjustmentTransitionFragment
    }
    unpublishedChanges
    zone {
      ...ZoneFragment
    }
  }
}
Variables
{"data": AddMarketReferenceInput}
Response
{
  "data": {
    "addAdjustmentMarketReference": {
      "actions": [AdjustmentAction],
      "airframes": [AdjustmentAirframe],
      "allocations": [AdjustmentAllocation],
      "categories": ["aircraft_hull"],
      "collaborators": [Actor],
      "costsExpenses": AdjustmentCostsExpenses,
      "creationDate": "2007-12-03T10:15:30Z",
      "documents": [FileMetadata],
      "executiveSummary": {},
      "expert": Actor,
      "fees": AdjustmentFees,
      "flights": [AdjustmentFlight],
      "id": "abc123",
      "images": [FileMetadata],
      "indemnity": AdjustmentIndemnity,
      "labels": [AdjustmentLabel],
      "lastUpdateDate": "2007-12-03T10:15:30Z",
      "legalEntities": AdjustmentLegalEntities,
      "lossDate": "2007-12-03T10:15:30Z",
      "lossLocation": Location,
      "lossNotice": LossNotice,
      "marketReferences": [MarketReference],
      "operation": Actor,
      "owner": Actor,
      "recommendations": {},
      "reportDate": "2007-12-03T10:15:30Z",
      "reporter": Actor,
      "reportingCurrency": "xyz789",
      "reports": [AdjustmentReport],
      "stakeholderReferences": [StakeholderReference],
      "status": "abeyance",
      "statusHistory": [AdjustmentStatusChange],
      "transitions": [AdjustmentTransition],
      "unpublishedChanges": false,
      "zone": Zone
    }
  }
}

addAdjustmentPolicy

Description

Add a Policy to the Adjustment

Response

Returns an Adjustment!

Arguments
Name Description
data - AddAdjustmentPolicyInput!

Example

Query
mutation addAdjustmentPolicy($data: AddAdjustmentPolicyInput!) {
  addAdjustmentPolicy(data: $data) {
    actions {
      ...AdjustmentActionFragment
    }
    airframes {
      ...AdjustmentAirframeFragment
    }
    allocations {
      ...AdjustmentAllocationFragment
    }
    categories
    collaborators {
      ...ActorFragment
    }
    costsExpenses {
      ...AdjustmentCostsExpensesFragment
    }
    creationDate
    documents {
      ...FileMetadataFragment
    }
    executiveSummary
    expert {
      ...ActorFragment
    }
    fees {
      ...AdjustmentFeesFragment
    }
    flights {
      ...AdjustmentFlightFragment
    }
    id
    images {
      ...FileMetadataFragment
    }
    indemnity {
      ...AdjustmentIndemnityFragment
    }
    labels {
      ...AdjustmentLabelFragment
    }
    lastUpdateDate
    legalEntities {
      ...AdjustmentLegalEntitiesFragment
    }
    lossDate
    lossLocation {
      ...LocationFragment
    }
    lossNotice {
      ...LossNoticeFragment
    }
    marketReferences {
      ...MarketReferenceFragment
    }
    operation {
      ...ActorFragment
    }
    owner {
      ...ActorFragment
    }
    recommendations
    reportDate
    reporter {
      ...ActorFragment
    }
    reportingCurrency
    reports {
      ...AdjustmentReportFragment
    }
    stakeholderReferences {
      ...StakeholderReferenceFragment
    }
    status
    statusHistory {
      ...AdjustmentStatusChangeFragment
    }
    transitions {
      ...AdjustmentTransitionFragment
    }
    unpublishedChanges
    zone {
      ...ZoneFragment
    }
  }
}
Variables
{"data": AddAdjustmentPolicyInput}
Response
{
  "data": {
    "addAdjustmentPolicy": {
      "actions": [AdjustmentAction],
      "airframes": [AdjustmentAirframe],
      "allocations": [AdjustmentAllocation],
      "categories": ["aircraft_hull"],
      "collaborators": [Actor],
      "costsExpenses": AdjustmentCostsExpenses,
      "creationDate": "2007-12-03T10:15:30Z",
      "documents": [FileMetadata],
      "executiveSummary": {},
      "expert": Actor,
      "fees": AdjustmentFees,
      "flights": [AdjustmentFlight],
      "id": "xyz789",
      "images": [FileMetadata],
      "indemnity": AdjustmentIndemnity,
      "labels": [AdjustmentLabel],
      "lastUpdateDate": "2007-12-03T10:15:30Z",
      "legalEntities": AdjustmentLegalEntities,
      "lossDate": "2007-12-03T10:15:30Z",
      "lossLocation": Location,
      "lossNotice": LossNotice,
      "marketReferences": [MarketReference],
      "operation": Actor,
      "owner": Actor,
      "recommendations": {},
      "reportDate": "2007-12-03T10:15:30Z",
      "reporter": Actor,
      "reportingCurrency": "abc123",
      "reports": [AdjustmentReport],
      "stakeholderReferences": [StakeholderReference],
      "status": "abeyance",
      "statusHistory": [AdjustmentStatusChange],
      "transitions": [AdjustmentTransition],
      "unpublishedChanges": true,
      "zone": Zone
    }
  }
}

addAdjustmentStakeholderReference

Description

Add a Stakeholder Reference to an Adjustment

Response

Returns an Adjustment!

Arguments
Name Description
data - AddStakeholderReferenceInput!

Example

Query
mutation addAdjustmentStakeholderReference($data: AddStakeholderReferenceInput!) {
  addAdjustmentStakeholderReference(data: $data) {
    actions {
      ...AdjustmentActionFragment
    }
    airframes {
      ...AdjustmentAirframeFragment
    }
    allocations {
      ...AdjustmentAllocationFragment
    }
    categories
    collaborators {
      ...ActorFragment
    }
    costsExpenses {
      ...AdjustmentCostsExpensesFragment
    }
    creationDate
    documents {
      ...FileMetadataFragment
    }
    executiveSummary
    expert {
      ...ActorFragment
    }
    fees {
      ...AdjustmentFeesFragment
    }
    flights {
      ...AdjustmentFlightFragment
    }
    id
    images {
      ...FileMetadataFragment
    }
    indemnity {
      ...AdjustmentIndemnityFragment
    }
    labels {
      ...AdjustmentLabelFragment
    }
    lastUpdateDate
    legalEntities {
      ...AdjustmentLegalEntitiesFragment
    }
    lossDate
    lossLocation {
      ...LocationFragment
    }
    lossNotice {
      ...LossNoticeFragment
    }
    marketReferences {
      ...MarketReferenceFragment
    }
    operation {
      ...ActorFragment
    }
    owner {
      ...ActorFragment
    }
    recommendations
    reportDate
    reporter {
      ...ActorFragment
    }
    reportingCurrency
    reports {
      ...AdjustmentReportFragment
    }
    stakeholderReferences {
      ...StakeholderReferenceFragment
    }
    status
    statusHistory {
      ...AdjustmentStatusChangeFragment
    }
    transitions {
      ...AdjustmentTransitionFragment
    }
    unpublishedChanges
    zone {
      ...ZoneFragment
    }
  }
}
Variables
{"data": AddStakeholderReferenceInput}
Response
{
  "data": {
    "addAdjustmentStakeholderReference": {
      "actions": [AdjustmentAction],
      "airframes": [AdjustmentAirframe],
      "allocations": [AdjustmentAllocation],
      "categories": ["aircraft_hull"],
      "collaborators": [Actor],
      "costsExpenses": AdjustmentCostsExpenses,
      "creationDate": "2007-12-03T10:15:30Z",
      "documents": [FileMetadata],
      "executiveSummary": {},
      "expert": Actor,
      "fees": AdjustmentFees,
      "flights": [AdjustmentFlight],
      "id": "abc123",
      "images": [FileMetadata],
      "indemnity": AdjustmentIndemnity,
      "labels": [AdjustmentLabel],
      "lastUpdateDate": "2007-12-03T10:15:30Z",
      "legalEntities": AdjustmentLegalEntities,
      "lossDate": "2007-12-03T10:15:30Z",
      "lossLocation": Location,
      "lossNotice": LossNotice,
      "marketReferences": [MarketReference],
      "operation": Actor,
      "owner": Actor,
      "recommendations": {},
      "reportDate": "2007-12-03T10:15:30Z",
      "reporter": Actor,
      "reportingCurrency": "abc123",
      "reports": [AdjustmentReport],
      "stakeholderReferences": [StakeholderReference],
      "status": "abeyance",
      "statusHistory": [AdjustmentStatusChange],
      "transitions": [AdjustmentTransition],
      "unpublishedChanges": true,
      "zone": Zone
    }
  }
}

addLossNoticeAirframe

Response

Returns a LossNotice!

Arguments
Name Description
data - AddLossNoticeAirframeInput!

Example

Query
mutation addLossNoticeAirframe($data: AddLossNoticeAirframeInput!) {
  addLossNoticeAirframe(data: $data) {
    actions
    airframes {
      ...LossNoticeAirframeFragment
    }
    categories
    creationDate
    documents {
      ...FileMetadataFragment
    }
    flights {
      ...LossNoticeFlightFragment
    }
    id
    images {
      ...FileMetadataFragment
    }
    labels {
      ...LossNoticeLabelFragment
    }
    lastUpdateDate
    lossDate
    lossLocation {
      ...LocationFragment
    }
    narrative
    operation {
      ...ActorFragment
    }
    reportDate
    reporter {
      ...ActorFragment
    }
    status
    zone {
      ...ZoneFragment
    }
  }
}
Variables
{"data": AddLossNoticeAirframeInput}
Response
{
  "data": {
    "addLossNoticeAirframe": {
      "actions": ["create"],
      "airframes": [LossNoticeAirframe],
      "categories": ["aircraft_hull"],
      "creationDate": "2007-12-03T10:15:30Z",
      "documents": [FileMetadata],
      "flights": [LossNoticeFlight],
      "id": "xyz789",
      "images": [FileMetadata],
      "labels": [LossNoticeLabel],
      "lastUpdateDate": "2007-12-03T10:15:30Z",
      "lossDate": "2007-12-03T10:15:30Z",
      "lossLocation": Location,
      "narrative": {},
      "operation": Actor,
      "reportDate": "2007-12-03T10:15:30Z",
      "reporter": Actor,
      "status": "draft",
      "zone": Zone
    }
  }
}

addLossNoticeAirframeEngine

Response

Returns a LossNotice!

Arguments
Name Description
data - AddLossNoticeAirframeEngineInput!

Example

Query
mutation addLossNoticeAirframeEngine($data: AddLossNoticeAirframeEngineInput!) {
  addLossNoticeAirframeEngine(data: $data) {
    actions
    airframes {
      ...LossNoticeAirframeFragment
    }
    categories
    creationDate
    documents {
      ...FileMetadataFragment
    }
    flights {
      ...LossNoticeFlightFragment
    }
    id
    images {
      ...FileMetadataFragment
    }
    labels {
      ...LossNoticeLabelFragment
    }
    lastUpdateDate
    lossDate
    lossLocation {
      ...LocationFragment
    }
    narrative
    operation {
      ...ActorFragment
    }
    reportDate
    reporter {
      ...ActorFragment
    }
    status
    zone {
      ...ZoneFragment
    }
  }
}
Variables
{"data": AddLossNoticeAirframeEngineInput}
Response
{
  "data": {
    "addLossNoticeAirframeEngine": {
      "actions": ["create"],
      "airframes": [LossNoticeAirframe],
      "categories": ["aircraft_hull"],
      "creationDate": "2007-12-03T10:15:30Z",
      "documents": [FileMetadata],
      "flights": [LossNoticeFlight],
      "id": "xyz789",
      "images": [FileMetadata],
      "labels": [LossNoticeLabel],
      "lastUpdateDate": "2007-12-03T10:15:30Z",
      "lossDate": "2007-12-03T10:15:30Z",
      "lossLocation": Location,
      "narrative": {},
      "operation": Actor,
      "reportDate": "2007-12-03T10:15:30Z",
      "reporter": Actor,
      "status": "draft",
      "zone": Zone
    }
  }
}

addLossNoticeAirframeEngineDamage

Response

Returns a LossNotice!

Arguments
Name Description
data - AddLossNoticeAirframeEngineDamageInput!

Example

Query
mutation addLossNoticeAirframeEngineDamage($data: AddLossNoticeAirframeEngineDamageInput!) {
  addLossNoticeAirframeEngineDamage(data: $data) {
    actions
    airframes {
      ...LossNoticeAirframeFragment
    }
    categories
    creationDate
    documents {
      ...FileMetadataFragment
    }
    flights {
      ...LossNoticeFlightFragment
    }
    id
    images {
      ...FileMetadataFragment
    }
    labels {
      ...LossNoticeLabelFragment
    }
    lastUpdateDate
    lossDate
    lossLocation {
      ...LocationFragment
    }
    narrative
    operation {
      ...ActorFragment
    }
    reportDate
    reporter {
      ...ActorFragment
    }
    status
    zone {
      ...ZoneFragment
    }
  }
}
Variables
{"data": AddLossNoticeAirframeEngineDamageInput}
Response
{
  "data": {
    "addLossNoticeAirframeEngineDamage": {
      "actions": ["create"],
      "airframes": [LossNoticeAirframe],
      "categories": ["aircraft_hull"],
      "creationDate": "2007-12-03T10:15:30Z",
      "documents": [FileMetadata],
      "flights": [LossNoticeFlight],
      "id": "abc123",
      "images": [FileMetadata],
      "labels": [LossNoticeLabel],
      "lastUpdateDate": "2007-12-03T10:15:30Z",
      "lossDate": "2007-12-03T10:15:30Z",
      "lossLocation": Location,
      "narrative": {},
      "operation": Actor,
      "reportDate": "2007-12-03T10:15:30Z",
      "reporter": Actor,
      "status": "draft",
      "zone": Zone
    }
  }
}

addLossNoticeAirframePartDamage

Response

Returns a LossNotice!

Arguments
Name Description
data - AddLossNoticeAirframePartDamageInput!

Example

Query
mutation addLossNoticeAirframePartDamage($data: AddLossNoticeAirframePartDamageInput!) {
  addLossNoticeAirframePartDamage(data: $data) {
    actions
    airframes {
      ...LossNoticeAirframeFragment
    }
    categories
    creationDate
    documents {
      ...FileMetadataFragment
    }
    flights {
      ...LossNoticeFlightFragment
    }
    id
    images {
      ...FileMetadataFragment
    }
    labels {
      ...LossNoticeLabelFragment
    }
    lastUpdateDate
    lossDate
    lossLocation {
      ...LocationFragment
    }
    narrative
    operation {
      ...ActorFragment
    }
    reportDate
    reporter {
      ...ActorFragment
    }
    status
    zone {
      ...ZoneFragment
    }
  }
}
Variables
{"data": AddLossNoticeAirframePartDamageInput}
Response
{
  "data": {
    "addLossNoticeAirframePartDamage": {
      "actions": ["create"],
      "airframes": [LossNoticeAirframe],
      "categories": ["aircraft_hull"],
      "creationDate": "2007-12-03T10:15:30Z",
      "documents": [FileMetadata],
      "flights": [LossNoticeFlight],
      "id": "xyz789",
      "images": [FileMetadata],
      "labels": [LossNoticeLabel],
      "lastUpdateDate": "2007-12-03T10:15:30Z",
      "lossDate": "2007-12-03T10:15:30Z",
      "lossLocation": Location,
      "narrative": {},
      "operation": Actor,
      "reportDate": "2007-12-03T10:15:30Z",
      "reporter": Actor,
      "status": "draft",
      "zone": Zone
    }
  }
}

addLossNoticeCustomLabel

Response

Returns a LossNotice!

Arguments
Name Description
data - AddLossNoticeLabelInput!

Example

Query
mutation addLossNoticeCustomLabel($data: AddLossNoticeLabelInput!) {
  addLossNoticeCustomLabel(data: $data) {
    actions
    airframes {
      ...LossNoticeAirframeFragment
    }
    categories
    creationDate
    documents {
      ...FileMetadataFragment
    }
    flights {
      ...LossNoticeFlightFragment
    }
    id
    images {
      ...FileMetadataFragment
    }
    labels {
      ...LossNoticeLabelFragment
    }
    lastUpdateDate
    lossDate
    lossLocation {
      ...LocationFragment
    }
    narrative
    operation {
      ...ActorFragment
    }
    reportDate
    reporter {
      ...ActorFragment
    }
    status
    zone {
      ...ZoneFragment
    }
  }
}
Variables
{"data": AddLossNoticeLabelInput}
Response
{
  "data": {
    "addLossNoticeCustomLabel": {
      "actions": ["create"],
      "airframes": [LossNoticeAirframe],
      "categories": ["aircraft_hull"],
      "creationDate": "2007-12-03T10:15:30Z",
      "documents": [FileMetadata],
      "flights": [LossNoticeFlight],
      "id": "abc123",
      "images": [FileMetadata],
      "labels": [LossNoticeLabel],
      "lastUpdateDate": "2007-12-03T10:15:30Z",
      "lossDate": "2007-12-03T10:15:30Z",
      "lossLocation": Location,
      "narrative": {},
      "operation": Actor,
      "reportDate": "2007-12-03T10:15:30Z",
      "reporter": Actor,
      "status": "draft",
      "zone": Zone
    }
  }
}

addLossNoticeFlight

Response

Returns a LossNotice!

Arguments
Name Description
data - AddLossNoticeFlightInput!

Example

Query
mutation addLossNoticeFlight($data: AddLossNoticeFlightInput!) {
  addLossNoticeFlight(data: $data) {
    actions
    airframes {
      ...LossNoticeAirframeFragment
    }
    categories
    creationDate
    documents {
      ...FileMetadataFragment
    }
    flights {
      ...LossNoticeFlightFragment
    }
    id
    images {
      ...FileMetadataFragment
    }
    labels {
      ...LossNoticeLabelFragment
    }
    lastUpdateDate
    lossDate
    lossLocation {
      ...LocationFragment
    }
    narrative
    operation {
      ...ActorFragment
    }
    reportDate
    reporter {
      ...ActorFragment
    }
    status
    zone {
      ...ZoneFragment
    }
  }
}
Variables
{"data": AddLossNoticeFlightInput}
Response
{
  "data": {
    "addLossNoticeFlight": {
      "actions": ["create"],
      "airframes": [LossNoticeAirframe],
      "categories": ["aircraft_hull"],
      "creationDate": "2007-12-03T10:15:30Z",
      "documents": [FileMetadata],
      "flights": [LossNoticeFlight],
      "id": "xyz789",
      "images": [FileMetadata],
      "labels": [LossNoticeLabel],
      "lastUpdateDate": "2007-12-03T10:15:30Z",
      "lossDate": "2007-12-03T10:15:30Z",
      "lossLocation": Location,
      "narrative": {},
      "operation": Actor,
      "reportDate": "2007-12-03T10:15:30Z",
      "reporter": Actor,
      "status": "draft",
      "zone": Zone
    }
  }
}

addLossNoticeManualFlight

Response

Returns a LossNotice!

Arguments
Name Description
data - AddLossNoticeManualFlightInput!

Example

Query
mutation addLossNoticeManualFlight($data: AddLossNoticeManualFlightInput!) {
  addLossNoticeManualFlight(data: $data) {
    actions
    airframes {
      ...LossNoticeAirframeFragment
    }
    categories
    creationDate
    documents {
      ...FileMetadataFragment
    }
    flights {
      ...LossNoticeFlightFragment
    }
    id
    images {
      ...FileMetadataFragment
    }
    labels {
      ...LossNoticeLabelFragment
    }
    lastUpdateDate
    lossDate
    lossLocation {
      ...LocationFragment
    }
    narrative
    operation {
      ...ActorFragment
    }
    reportDate
    reporter {
      ...ActorFragment
    }
    status
    zone {
      ...ZoneFragment
    }
  }
}
Variables
{"data": AddLossNoticeManualFlightInput}
Response
{
  "data": {
    "addLossNoticeManualFlight": {
      "actions": ["create"],
      "airframes": [LossNoticeAirframe],
      "categories": ["aircraft_hull"],
      "creationDate": "2007-12-03T10:15:30Z",
      "documents": [FileMetadata],
      "flights": [LossNoticeFlight],
      "id": "xyz789",
      "images": [FileMetadata],
      "labels": [LossNoticeLabel],
      "lastUpdateDate": "2007-12-03T10:15:30Z",
      "lossDate": "2007-12-03T10:15:30Z",
      "lossLocation": Location,
      "narrative": {},
      "operation": Actor,
      "reportDate": "2007-12-03T10:15:30Z",
      "reporter": Actor,
      "status": "draft",
      "zone": Zone
    }
  }
}

addPolicyCustomLabel

Description

Add a custom Label to a Policy

Response

Returns a Policy!

Arguments
Name Description
data - AddPolicyLabelInput!

Example

Query
mutation addPolicyCustomLabel($data: AddPolicyLabelInput!) {
  addPolicyCustomLabel(data: $data) {
    cls
    creationDate
    endDate
    id
    labels {
      ...PolicyLabelFragment
    }
    lastUpdateDate
    markets {
      ...PolicyMarketFragment
    }
    namedInsured {
      ...PolicyLegalEntityFragment
    }
    policyNumber
    policyholder {
      ...PolicyLegalEntityFragment
    }
    primaryBroker {
      ...PolicyLegalEntityFragment
    }
    secondaryBroker {
      ...PolicyLegalEntityFragment
    }
    startDate
    type
    zone {
      ...ZoneFragment
    }
  }
}
Variables
{"data": AddPolicyLabelInput}
Response
{
  "data": {
    "addPolicyCustomLabel": {
      "cls": "aviation",
      "creationDate": "2007-12-03T10:15:30Z",
      "endDate": "2007-12-03T10:15:30Z",
      "id": "xyz789",
      "labels": [PolicyLabel],
      "lastUpdateDate": "2007-12-03T10:15:30Z",
      "markets": [PolicyMarket],
      "namedInsured": [PolicyLegalEntity],
      "policyNumber": "xyz789",
      "policyholder": PolicyLegalEntity,
      "primaryBroker": PolicyLegalEntity,
      "secondaryBroker": PolicyLegalEntity,
      "startDate": "2007-12-03T10:15:30Z",
      "type": ["aviation_contingent_hull_all_risk"],
      "zone": Zone
    }
  }
}

addPolicyMarket

Description

Add a new Market to a Policy

Response

Returns a Policy!

Arguments
Name Description
data - AddPolicyMarketInput!

Example

Query
mutation addPolicyMarket($data: AddPolicyMarketInput!) {
  addPolicyMarket(data: $data) {
    cls
    creationDate
    endDate
    id
    labels {
      ...PolicyLabelFragment
    }
    lastUpdateDate
    markets {
      ...PolicyMarketFragment
    }
    namedInsured {
      ...PolicyLegalEntityFragment
    }
    policyNumber
    policyholder {
      ...PolicyLegalEntityFragment
    }
    primaryBroker {
      ...PolicyLegalEntityFragment
    }
    secondaryBroker {
      ...PolicyLegalEntityFragment
    }
    startDate
    type
    zone {
      ...ZoneFragment
    }
  }
}
Variables
{"data": AddPolicyMarketInput}
Response
{
  "data": {
    "addPolicyMarket": {
      "cls": "aviation",
      "creationDate": "2007-12-03T10:15:30Z",
      "endDate": "2007-12-03T10:15:30Z",
      "id": "abc123",
      "labels": [PolicyLabel],
      "lastUpdateDate": "2007-12-03T10:15:30Z",
      "markets": [PolicyMarket],
      "namedInsured": [PolicyLegalEntity],
      "policyNumber": "xyz789",
      "policyholder": PolicyLegalEntity,
      "primaryBroker": PolicyLegalEntity,
      "secondaryBroker": PolicyLegalEntity,
      "startDate": "2007-12-03T10:15:30Z",
      "type": ["aviation_contingent_hull_all_risk"],
      "zone": Zone
    }
  }
}

addPolicyMarketCompanyLine

Description

Add a Company Line to a Policy Market

Response

Returns a Policy!

Arguments
Name Description
data - AddPolicyMarketCompanyLineInput!

Example

Query
mutation addPolicyMarketCompanyLine($data: AddPolicyMarketCompanyLineInput!) {
  addPolicyMarketCompanyLine(data: $data) {
    cls
    creationDate
    endDate
    id
    labels {
      ...PolicyLabelFragment
    }
    lastUpdateDate
    markets {
      ...PolicyMarketFragment
    }
    namedInsured {
      ...PolicyLegalEntityFragment
    }
    policyNumber
    policyholder {
      ...PolicyLegalEntityFragment
    }
    primaryBroker {
      ...PolicyLegalEntityFragment
    }
    secondaryBroker {
      ...PolicyLegalEntityFragment
    }
    startDate
    type
    zone {
      ...ZoneFragment
    }
  }
}
Variables
{"data": AddPolicyMarketCompanyLineInput}
Response
{
  "data": {
    "addPolicyMarketCompanyLine": {
      "cls": "aviation",
      "creationDate": "2007-12-03T10:15:30Z",
      "endDate": "2007-12-03T10:15:30Z",
      "id": "xyz789",
      "labels": [PolicyLabel],
      "lastUpdateDate": "2007-12-03T10:15:30Z",
      "markets": [PolicyMarket],
      "namedInsured": [PolicyLegalEntity],
      "policyNumber": "xyz789",
      "policyholder": PolicyLegalEntity,
      "primaryBroker": PolicyLegalEntity,
      "secondaryBroker": PolicyLegalEntity,
      "startDate": "2007-12-03T10:15:30Z",
      "type": ["aviation_contingent_hull_all_risk"],
      "zone": Zone
    }
  }
}

addPolicyMarketCompanyLineTag

Description

Add a Tag to a Policy Market Company Line

Response

Returns a Policy!

Arguments
Name Description
data - AddPolicyMarketCompanyLineTagInput!

Example

Query
mutation addPolicyMarketCompanyLineTag($data: AddPolicyMarketCompanyLineTagInput!) {
  addPolicyMarketCompanyLineTag(data: $data) {
    cls
    creationDate
    endDate
    id
    labels {
      ...PolicyLabelFragment
    }
    lastUpdateDate
    markets {
      ...PolicyMarketFragment
    }
    namedInsured {
      ...PolicyLegalEntityFragment
    }
    policyNumber
    policyholder {
      ...PolicyLegalEntityFragment
    }
    primaryBroker {
      ...PolicyLegalEntityFragment
    }
    secondaryBroker {
      ...PolicyLegalEntityFragment
    }
    startDate
    type
    zone {
      ...ZoneFragment
    }
  }
}
Variables
{"data": AddPolicyMarketCompanyLineTagInput}
Response
{
  "data": {
    "addPolicyMarketCompanyLineTag": {
      "cls": "aviation",
      "creationDate": "2007-12-03T10:15:30Z",
      "endDate": "2007-12-03T10:15:30Z",
      "id": "xyz789",
      "labels": [PolicyLabel],
      "lastUpdateDate": "2007-12-03T10:15:30Z",
      "markets": [PolicyMarket],
      "namedInsured": [PolicyLegalEntity],
      "policyNumber": "xyz789",
      "policyholder": PolicyLegalEntity,
      "primaryBroker": PolicyLegalEntity,
      "secondaryBroker": PolicyLegalEntity,
      "startDate": "2007-12-03T10:15:30Z",
      "type": ["aviation_contingent_hull_all_risk"],
      "zone": Zone
    }
  }
}

addPolicyMarketWarrantyPolicy

Description

Add a Warranty Policy/Risk Framework to a Policy Market

Response

Returns a Policy!

Arguments
Name Description
data - AddPolicyMarketWarrantyPolicyInput!

Example

Query
mutation addPolicyMarketWarrantyPolicy($data: AddPolicyMarketWarrantyPolicyInput!) {
  addPolicyMarketWarrantyPolicy(data: $data) {
    cls
    creationDate
    endDate
    id
    labels {
      ...PolicyLabelFragment
    }
    lastUpdateDate
    markets {
      ...PolicyMarketFragment
    }
    namedInsured {
      ...PolicyLegalEntityFragment
    }
    policyNumber
    policyholder {
      ...PolicyLegalEntityFragment
    }
    primaryBroker {
      ...PolicyLegalEntityFragment
    }
    secondaryBroker {
      ...PolicyLegalEntityFragment
    }
    startDate
    type
    zone {
      ...ZoneFragment
    }
  }
}
Variables
{"data": AddPolicyMarketWarrantyPolicyInput}
Response
{
  "data": {
    "addPolicyMarketWarrantyPolicy": {
      "cls": "aviation",
      "creationDate": "2007-12-03T10:15:30Z",
      "endDate": "2007-12-03T10:15:30Z",
      "id": "abc123",
      "labels": [PolicyLabel],
      "lastUpdateDate": "2007-12-03T10:15:30Z",
      "markets": [PolicyMarket],
      "namedInsured": [PolicyLegalEntity],
      "policyNumber": "xyz789",
      "policyholder": PolicyLegalEntity,
      "primaryBroker": PolicyLegalEntity,
      "secondaryBroker": PolicyLegalEntity,
      "startDate": "2007-12-03T10:15:30Z",
      "type": ["aviation_contingent_hull_all_risk"],
      "zone": Zone
    }
  }
}

addPolicyNamedInsured

Description

Add a Named Insured to a Policy

Response

Returns a Policy!

Arguments
Name Description
data - AddPolicyNamedInsuredInput!

Example

Query
mutation addPolicyNamedInsured($data: AddPolicyNamedInsuredInput!) {
  addPolicyNamedInsured(data: $data) {
    cls
    creationDate
    endDate
    id
    labels {
      ...PolicyLabelFragment
    }
    lastUpdateDate
    markets {
      ...PolicyMarketFragment
    }
    namedInsured {
      ...PolicyLegalEntityFragment
    }
    policyNumber
    policyholder {
      ...PolicyLegalEntityFragment
    }
    primaryBroker {
      ...PolicyLegalEntityFragment
    }
    secondaryBroker {
      ...PolicyLegalEntityFragment
    }
    startDate
    type
    zone {
      ...ZoneFragment
    }
  }
}
Variables
{"data": AddPolicyNamedInsuredInput}
Response
{
  "data": {
    "addPolicyNamedInsured": {
      "cls": "aviation",
      "creationDate": "2007-12-03T10:15:30Z",
      "endDate": "2007-12-03T10:15:30Z",
      "id": "xyz789",
      "labels": [PolicyLabel],
      "lastUpdateDate": "2007-12-03T10:15:30Z",
      "markets": [PolicyMarket],
      "namedInsured": [PolicyLegalEntity],
      "policyNumber": "abc123",
      "policyholder": PolicyLegalEntity,
      "primaryBroker": PolicyLegalEntity,
      "secondaryBroker": PolicyLegalEntity,
      "startDate": "2007-12-03T10:15:30Z",
      "type": ["aviation_contingent_hull_all_risk"],
      "zone": Zone
    }
  }
}

convertAdjustmentFlightManual

Description

Convert a Flight to a manual Flight

Response

Returns an Adjustment!

Arguments
Name Description
data - ConvertAdjustmentFlightManualInput!

Example

Query
mutation convertAdjustmentFlightManual($data: ConvertAdjustmentFlightManualInput!) {
  convertAdjustmentFlightManual(data: $data) {
    actions {
      ...AdjustmentActionFragment
    }
    airframes {
      ...AdjustmentAirframeFragment
    }
    allocations {
      ...AdjustmentAllocationFragment
    }
    categories
    collaborators {
      ...ActorFragment
    }
    costsExpenses {
      ...AdjustmentCostsExpensesFragment
    }
    creationDate
    documents {
      ...FileMetadataFragment
    }
    executiveSummary
    expert {
      ...ActorFragment
    }
    fees {
      ...AdjustmentFeesFragment
    }
    flights {
      ...AdjustmentFlightFragment
    }
    id
    images {
      ...FileMetadataFragment
    }
    indemnity {
      ...AdjustmentIndemnityFragment
    }
    labels {
      ...AdjustmentLabelFragment
    }
    lastUpdateDate
    legalEntities {
      ...AdjustmentLegalEntitiesFragment
    }
    lossDate
    lossLocation {
      ...LocationFragment
    }
    lossNotice {
      ...LossNoticeFragment
    }
    marketReferences {
      ...MarketReferenceFragment
    }
    operation {
      ...ActorFragment
    }
    owner {
      ...ActorFragment
    }
    recommendations
    reportDate
    reporter {
      ...ActorFragment
    }
    reportingCurrency
    reports {
      ...AdjustmentReportFragment
    }
    stakeholderReferences {
      ...StakeholderReferenceFragment
    }
    status
    statusHistory {
      ...AdjustmentStatusChangeFragment
    }
    transitions {
      ...AdjustmentTransitionFragment
    }
    unpublishedChanges
    zone {
      ...ZoneFragment
    }
  }
}
Variables
{"data": ConvertAdjustmentFlightManualInput}
Response
{
  "data": {
    "convertAdjustmentFlightManual": {
      "actions": [AdjustmentAction],
      "airframes": [AdjustmentAirframe],
      "allocations": [AdjustmentAllocation],
      "categories": ["aircraft_hull"],
      "collaborators": [Actor],
      "costsExpenses": AdjustmentCostsExpenses,
      "creationDate": "2007-12-03T10:15:30Z",
      "documents": [FileMetadata],
      "executiveSummary": {},
      "expert": Actor,
      "fees": AdjustmentFees,
      "flights": [AdjustmentFlight],
      "id": "abc123",
      "images": [FileMetadata],
      "indemnity": AdjustmentIndemnity,
      "labels": [AdjustmentLabel],
      "lastUpdateDate": "2007-12-03T10:15:30Z",
      "legalEntities": AdjustmentLegalEntities,
      "lossDate": "2007-12-03T10:15:30Z",
      "lossLocation": Location,
      "lossNotice": LossNotice,
      "marketReferences": [MarketReference],
      "operation": Actor,
      "owner": Actor,
      "recommendations": {},
      "reportDate": "2007-12-03T10:15:30Z",
      "reporter": Actor,
      "reportingCurrency": "xyz789",
      "reports": [AdjustmentReport],
      "stakeholderReferences": [StakeholderReference],
      "status": "abeyance",
      "statusHistory": [AdjustmentStatusChange],
      "transitions": [AdjustmentTransition],
      "unpublishedChanges": true,
      "zone": Zone
    }
  }
}

convertLossNoticeFlightManual

Response

Returns a LossNotice!

Arguments
Name Description
data - ConvertLossNoticeFlightManualInput!

Example

Query
mutation convertLossNoticeFlightManual($data: ConvertLossNoticeFlightManualInput!) {
  convertLossNoticeFlightManual(data: $data) {
    actions
    airframes {
      ...LossNoticeAirframeFragment
    }
    categories
    creationDate
    documents {
      ...FileMetadataFragment
    }
    flights {
      ...LossNoticeFlightFragment
    }
    id
    images {
      ...FileMetadataFragment
    }
    labels {
      ...LossNoticeLabelFragment
    }
    lastUpdateDate
    lossDate
    lossLocation {
      ...LocationFragment
    }
    narrative
    operation {
      ...ActorFragment
    }
    reportDate
    reporter {
      ...ActorFragment
    }
    status
    zone {
      ...ZoneFragment
    }
  }
}
Variables
{"data": ConvertLossNoticeFlightManualInput}
Response
{
  "data": {
    "convertLossNoticeFlightManual": {
      "actions": ["create"],
      "airframes": [LossNoticeAirframe],
      "categories": ["aircraft_hull"],
      "creationDate": "2007-12-03T10:15:30Z",
      "documents": [FileMetadata],
      "flights": [LossNoticeFlight],
      "id": "abc123",
      "images": [FileMetadata],
      "labels": [LossNoticeLabel],
      "lastUpdateDate": "2007-12-03T10:15:30Z",
      "lossDate": "2007-12-03T10:15:30Z",
      "lossLocation": Location,
      "narrative": {},
      "operation": Actor,
      "reportDate": "2007-12-03T10:15:30Z",
      "reporter": Actor,
      "status": "draft",
      "zone": Zone
    }
  }
}

createAdjustment

Description

Create a new Adjustment

Response

Returns an Adjustment!

Arguments
Name Description
data - CreateAdjustmentInput!

Example

Query
mutation createAdjustment($data: CreateAdjustmentInput!) {
  createAdjustment(data: $data) {
    actions {
      ...AdjustmentActionFragment
    }
    airframes {
      ...AdjustmentAirframeFragment
    }
    allocations {
      ...AdjustmentAllocationFragment
    }
    categories
    collaborators {
      ...ActorFragment
    }
    costsExpenses {
      ...AdjustmentCostsExpensesFragment
    }
    creationDate
    documents {
      ...FileMetadataFragment
    }
    executiveSummary
    expert {
      ...ActorFragment
    }
    fees {
      ...AdjustmentFeesFragment
    }
    flights {
      ...AdjustmentFlightFragment
    }
    id
    images {
      ...FileMetadataFragment
    }
    indemnity {
      ...AdjustmentIndemnityFragment
    }
    labels {
      ...AdjustmentLabelFragment
    }
    lastUpdateDate
    legalEntities {
      ...AdjustmentLegalEntitiesFragment
    }
    lossDate
    lossLocation {
      ...LocationFragment
    }
    lossNotice {
      ...LossNoticeFragment
    }
    marketReferences {
      ...MarketReferenceFragment
    }
    operation {
      ...ActorFragment
    }
    owner {
      ...ActorFragment
    }
    recommendations
    reportDate
    reporter {
      ...ActorFragment
    }
    reportingCurrency
    reports {
      ...AdjustmentReportFragment
    }
    stakeholderReferences {
      ...StakeholderReferenceFragment
    }
    status
    statusHistory {
      ...AdjustmentStatusChangeFragment
    }
    transitions {
      ...AdjustmentTransitionFragment
    }
    unpublishedChanges
    zone {
      ...ZoneFragment
    }
  }
}
Variables
{"data": CreateAdjustmentInput}
Response
{
  "data": {
    "createAdjustment": {
      "actions": [AdjustmentAction],
      "airframes": [AdjustmentAirframe],
      "allocations": [AdjustmentAllocation],
      "categories": ["aircraft_hull"],
      "collaborators": [Actor],
      "costsExpenses": AdjustmentCostsExpenses,
      "creationDate": "2007-12-03T10:15:30Z",
      "documents": [FileMetadata],
      "executiveSummary": {},
      "expert": Actor,
      "fees": AdjustmentFees,
      "flights": [AdjustmentFlight],
      "id": "xyz789",
      "images": [FileMetadata],
      "indemnity": AdjustmentIndemnity,
      "labels": [AdjustmentLabel],
      "lastUpdateDate": "2007-12-03T10:15:30Z",
      "legalEntities": AdjustmentLegalEntities,
      "lossDate": "2007-12-03T10:15:30Z",
      "lossLocation": Location,
      "lossNotice": LossNotice,
      "marketReferences": [MarketReference],
      "operation": Actor,
      "owner": Actor,
      "recommendations": {},
      "reportDate": "2007-12-03T10:15:30Z",
      "reporter": Actor,
      "reportingCurrency": "xyz789",
      "reports": [AdjustmentReport],
      "stakeholderReferences": [StakeholderReference],
      "status": "abeyance",
      "statusHistory": [AdjustmentStatusChange],
      "transitions": [AdjustmentTransition],
      "unpublishedChanges": true,
      "zone": Zone
    }
  }
}

createCompany

Description

Create a new Company/Organisation

Response

Returns a Company!

Arguments
Name Description
data - CreateCompanyInput!

Example

Query
mutation createCompany($data: CreateCompanyInput!) {
  createCompany(data: $data) {
    addressLine1
    addressLine2
    artwork {
      ...CompanyArtworkMetadataFragment
    }
    country {
      ...CountryFragment
    }
    county
    group {
      ...GroupFragment
    }
    id
    locality
    name
    postalCode
    region
    reportSettings {
      ...CompanyReportSettingsFragment
    }
    stampCodes
    streetName
    users {
      ...UserFragment
    }
  }
}
Variables
{"data": CreateCompanyInput}
Response
{
  "data": {
    "createCompany": {
      "addressLine1": "abc123",
      "addressLine2": "xyz789",
      "artwork": [CompanyArtworkMetadata],
      "country": Country,
      "county": "abc123",
      "group": Group,
      "id": "xyz789",
      "locality": "abc123",
      "name": "xyz789",
      "postalCode": "abc123",
      "region": "abc123",
      "reportSettings": CompanyReportSettings,
      "stampCodes": ["abc123"],
      "streetName": "abc123",
      "users": [User]
    }
  }
}

createLossNotice

Response

Returns a LossNotice!

Arguments
Name Description
data - CreateLossNoticeInput!

Example

Query
mutation createLossNotice($data: CreateLossNoticeInput!) {
  createLossNotice(data: $data) {
    actions
    airframes {
      ...LossNoticeAirframeFragment
    }
    categories
    creationDate
    documents {
      ...FileMetadataFragment
    }
    flights {
      ...LossNoticeFlightFragment
    }
    id
    images {
      ...FileMetadataFragment
    }
    labels {
      ...LossNoticeLabelFragment
    }
    lastUpdateDate
    lossDate
    lossLocation {
      ...LocationFragment
    }
    narrative
    operation {
      ...ActorFragment
    }
    reportDate
    reporter {
      ...ActorFragment
    }
    status
    zone {
      ...ZoneFragment
    }
  }
}
Variables
{"data": CreateLossNoticeInput}
Response
{
  "data": {
    "createLossNotice": {
      "actions": ["create"],
      "airframes": [LossNoticeAirframe],
      "categories": ["aircraft_hull"],
      "creationDate": "2007-12-03T10:15:30Z",
      "documents": [FileMetadata],
      "flights": [LossNoticeFlight],
      "id": "xyz789",
      "images": [FileMetadata],
      "labels": [LossNoticeLabel],
      "lastUpdateDate": "2007-12-03T10:15:30Z",
      "lossDate": "2007-12-03T10:15:30Z",
      "lossLocation": Location,
      "narrative": {},
      "operation": Actor,
      "reportDate": "2007-12-03T10:15:30Z",
      "reporter": Actor,
      "status": "draft",
      "zone": Zone
    }
  }
}

createPolicy

Description

Create a new Policy

Response

Returns a Policy!

Arguments
Name Description
data - CreatePolicyInput!

Example

Query
mutation createPolicy($data: CreatePolicyInput!) {
  createPolicy(data: $data) {
    cls
    creationDate
    endDate
    id
    labels {
      ...PolicyLabelFragment
    }
    lastUpdateDate
    markets {
      ...PolicyMarketFragment
    }
    namedInsured {
      ...PolicyLegalEntityFragment
    }
    policyNumber
    policyholder {
      ...PolicyLegalEntityFragment
    }
    primaryBroker {
      ...PolicyLegalEntityFragment
    }
    secondaryBroker {
      ...PolicyLegalEntityFragment
    }
    startDate
    type
    zone {
      ...ZoneFragment
    }
  }
}
Variables
{"data": CreatePolicyInput}
Response
{
  "data": {
    "createPolicy": {
      "cls": "aviation",
      "creationDate": "2007-12-03T10:15:30Z",
      "endDate": "2007-12-03T10:15:30Z",
      "id": "xyz789",
      "labels": [PolicyLabel],
      "lastUpdateDate": "2007-12-03T10:15:30Z",
      "markets": [PolicyMarket],
      "namedInsured": [PolicyLegalEntity],
      "policyNumber": "xyz789",
      "policyholder": PolicyLegalEntity,
      "primaryBroker": PolicyLegalEntity,
      "secondaryBroker": PolicyLegalEntity,
      "startDate": "2007-12-03T10:15:30Z",
      "type": ["aviation_contingent_hull_all_risk"],
      "zone": Zone
    }
  }
}

createRole

Description

Create a new Role

Response

Returns a Role!

Arguments
Name Description
data - CreateRoleInput!

Example

Query
mutation createRole($data: CreateRoleInput!) {
  createRole(data: $data) {
    description
    enabled
    group {
      ...GroupFragment
    }
    id
    name
    permissions {
      ...PermissionFragment
    }
    scope
    zone {
      ...ZoneFragment
    }
  }
}
Variables
{"data": CreateRoleInput}
Response
{
  "data": {
    "createRole": {
      "description": "abc123",
      "enabled": true,
      "group": Group,
      "id": "xyz789",
      "name": "abc123",
      "permissions": [Permission],
      "scope": "global",
      "zone": Zone
    }
  }
}

createRolePermission

Response

Returns a Permission!

Arguments
Name Description
data - CreateRolePermissionInput!

Example

Query
mutation createRolePermission($data: CreateRolePermissionInput!) {
  createRolePermission(data: $data) {
    actions
    conditions {
      ...ConditionFragment
    }
    enabled
    id
    resource
  }
}
Variables
{"data": CreateRolePermissionInput}
Response
{
  "data": {
    "createRolePermission": {
      "actions": ["create"],
      "conditions": Condition,
      "enabled": false,
      "id": "abc123",
      "resource": "adjustment"
    }
  }
}

createStakeholder

Description

Create a new Stakeholder

Response

Returns a Stakeholder!

Arguments
Name Description
data - CreateStakeholderInput!

Example

Query
mutation createStakeholder($data: CreateStakeholderInput!) {
  createStakeholder(data: $data) {
    company {
      ...CompanyFragment
    }
    id
    roles
    zone {
      ...ZoneFragment
    }
  }
}
Variables
{"data": CreateStakeholderInput}
Response
{
  "data": {
    "createStakeholder": {
      "company": Company,
      "id": "abc123",
      "roles": ["broker"],
      "zone": Zone
    }
  }
}

createZone

Response

Returns a Zone!

Arguments
Name Description
data - CreateZoneInput!

Example

Query
mutation createZone($data: CreateZoneInput!) {
  createZone(data: $data) {
    description
    id
    name
    parentId
    paths {
      ...ZonePathsFragment
    }
    resources {
      ...ResourceActionsFragment
    }
  }
}
Variables
{"data": CreateZoneInput}
Response
{
  "data": {
    "createZone": {
      "description": "xyz789",
      "id": "abc123",
      "name": "xyz789",
      "parentId": "xyz789",
      "paths": ZonePaths,
      "resources": [ResourceActions]
    }
  }
}

deleteCompany

Description

Delete a Company/Organisation

Response

Returns a Company!

Arguments
Name Description
data - DeleteCompanyInput!

Example

Query
mutation deleteCompany($data: DeleteCompanyInput!) {
  deleteCompany(data: $data) {
    addressLine1
    addressLine2
    artwork {
      ...CompanyArtworkMetadataFragment
    }
    country {
      ...CountryFragment
    }
    county
    group {
      ...GroupFragment
    }
    id
    locality
    name
    postalCode
    region
    reportSettings {
      ...CompanyReportSettingsFragment
    }
    stampCodes
    streetName
    users {
      ...UserFragment
    }
  }
}
Variables
{"data": DeleteCompanyInput}
Response
{
  "data": {
    "deleteCompany": {
      "addressLine1": "xyz789",
      "addressLine2": "xyz789",
      "artwork": [CompanyArtworkMetadata],
      "country": Country,
      "county": "xyz789",
      "group": Group,
      "id": "abc123",
      "locality": "abc123",
      "name": "abc123",
      "postalCode": "abc123",
      "region": "abc123",
      "reportSettings": CompanyReportSettings,
      "stampCodes": ["xyz789"],
      "streetName": "xyz789",
      "users": [User]
    }
  }
}

deleteCompanyImage

Description

Delete a Company/Organisation's logo

Response

Returns a Company!

Arguments
Name Description
data - DeleteCompanyImageInput!

Example

Query
mutation deleteCompanyImage($data: DeleteCompanyImageInput!) {
  deleteCompanyImage(data: $data) {
    addressLine1
    addressLine2
    artwork {
      ...CompanyArtworkMetadataFragment
    }
    country {
      ...CountryFragment
    }
    county
    group {
      ...GroupFragment
    }
    id
    locality
    name
    postalCode
    region
    reportSettings {
      ...CompanyReportSettingsFragment
    }
    stampCodes
    streetName
    users {
      ...UserFragment
    }
  }
}
Variables
{"data": DeleteCompanyImageInput}
Response
{
  "data": {
    "deleteCompanyImage": {
      "addressLine1": "abc123",
      "addressLine2": "xyz789",
      "artwork": [CompanyArtworkMetadata],
      "country": Country,
      "county": "xyz789",
      "group": Group,
      "id": "abc123",
      "locality": "xyz789",
      "name": "abc123",
      "postalCode": "abc123",
      "region": "xyz789",
      "reportSettings": CompanyReportSettings,
      "stampCodes": ["xyz789"],
      "streetName": "abc123",
      "users": [User]
    }
  }
}

deleteRole

Description

Delete a Role

Response

Returns a Role!

Arguments
Name Description
data - DeleteRoleInput!

Example

Query
mutation deleteRole($data: DeleteRoleInput!) {
  deleteRole(data: $data) {
    description
    enabled
    group {
      ...GroupFragment
    }
    id
    name
    permissions {
      ...PermissionFragment
    }
    scope
    zone {
      ...ZoneFragment
    }
  }
}
Variables
{"data": DeleteRoleInput}
Response
{
  "data": {
    "deleteRole": {
      "description": "abc123",
      "enabled": true,
      "group": Group,
      "id": "xyz789",
      "name": "xyz789",
      "permissions": [Permission],
      "scope": "global",
      "zone": Zone
    }
  }
}

deleteRolePermission

Response

Returns a Permission!

Arguments
Name Description
data - DeleteRolePermissionInput!

Example

Query
mutation deleteRolePermission($data: DeleteRolePermissionInput!) {
  deleteRolePermission(data: $data) {
    actions
    conditions {
      ...ConditionFragment
    }
    enabled
    id
    resource
  }
}
Variables
{"data": DeleteRolePermissionInput}
Response
{
  "data": {
    "deleteRolePermission": {
      "actions": ["create"],
      "conditions": Condition,
      "enabled": false,
      "id": "xyz789",
      "resource": "adjustment"
    }
  }
}

deleteRolePermissionCondition

Response

Returns a Condition!

Arguments
Name Description
data - DeleteRolePermissionConditionInput!

Example

Query
mutation deleteRolePermissionCondition($data: DeleteRolePermissionConditionInput!) {
  deleteRolePermissionCondition(data: $data) {
    from
    id
    roles
    to
  }
}
Variables
{"data": DeleteRolePermissionConditionInput}
Response
{
  "data": {
    "deleteRolePermissionCondition": {
      "from": "2007-12-03T10:15:30Z",
      "id": "abc123",
      "roles": ["collaborator"],
      "to": "2007-12-03T10:15:30Z"
    }
  }
}

deleteStakeholder

Description

Delete a Stakeholder

Response

Returns a Stakeholder!

Arguments
Name Description
data - DeleteStakeholderInput!

Example

Query
mutation deleteStakeholder($data: DeleteStakeholderInput!) {
  deleteStakeholder(data: $data) {
    company {
      ...CompanyFragment
    }
    id
    roles
    zone {
      ...ZoneFragment
    }
  }
}
Variables
{"data": DeleteStakeholderInput}
Response
{
  "data": {
    "deleteStakeholder": {
      "company": Company,
      "id": "xyz789",
      "roles": ["broker"],
      "zone": Zone
    }
  }
}

deleteZone

Response

Returns a Zone!

Arguments
Name Description
data - DeleteZoneInput!

Example

Query
mutation deleteZone($data: DeleteZoneInput!) {
  deleteZone(data: $data) {
    description
    id
    name
    parentId
    paths {
      ...ZonePathsFragment
    }
    resources {
      ...ResourceActionsFragment
    }
  }
}
Variables
{"data": DeleteZoneInput}
Response
{
  "data": {
    "deleteZone": {
      "description": "abc123",
      "id": "abc123",
      "name": "abc123",
      "parentId": "abc123",
      "paths": ZonePaths,
      "resources": [ResourceActions]
    }
  }
}

disableRole

Description

Disable a Role

Response

Returns a Role!

Arguments
Name Description
data - DisableRoleInput!

Example

Query
mutation disableRole($data: DisableRoleInput!) {
  disableRole(data: $data) {
    description
    enabled
    group {
      ...GroupFragment
    }
    id
    name
    permissions {
      ...PermissionFragment
    }
    scope
    zone {
      ...ZoneFragment
    }
  }
}
Variables
{"data": DisableRoleInput}
Response
{
  "data": {
    "disableRole": {
      "description": "abc123",
      "enabled": false,
      "group": Group,
      "id": "xyz789",
      "name": "abc123",
      "permissions": [Permission],
      "scope": "global",
      "zone": Zone
    }
  }
}

disableRolePermission

Response

Returns a Permission!

Arguments
Name Description
data - DisableRolePermissionInput!

Example

Query
mutation disableRolePermission($data: DisableRolePermissionInput!) {
  disableRolePermission(data: $data) {
    actions
    conditions {
      ...ConditionFragment
    }
    enabled
    id
    resource
  }
}
Variables
{"data": DisableRolePermissionInput}
Response
{
  "data": {
    "disableRolePermission": {
      "actions": ["create"],
      "conditions": Condition,
      "enabled": false,
      "id": "abc123",
      "resource": "adjustment"
    }
  }
}

enableRole

Description

Enable a Role

Response

Returns a Role!

Arguments
Name Description
data - EnableRoleInput!

Example

Query
mutation enableRole($data: EnableRoleInput!) {
  enableRole(data: $data) {
    description
    enabled
    group {
      ...GroupFragment
    }
    id
    name
    permissions {
      ...PermissionFragment
    }
    scope
    zone {
      ...ZoneFragment
    }
  }
}
Variables
{"data": EnableRoleInput}
Response
{
  "data": {
    "enableRole": {
      "description": "abc123",
      "enabled": true,
      "group": Group,
      "id": "xyz789",
      "name": "xyz789",
      "permissions": [Permission],
      "scope": "global",
      "zone": Zone
    }
  }
}

enableRolePermission

Response

Returns a Permission!

Arguments
Name Description
data - EnableRolePermissionInput!

Example

Query
mutation enableRolePermission($data: EnableRolePermissionInput!) {
  enableRolePermission(data: $data) {
    actions
    conditions {
      ...ConditionFragment
    }
    enabled
    id
    resource
  }
}
Variables
{"data": EnableRolePermissionInput}
Response
{
  "data": {
    "enableRolePermission": {
      "actions": ["create"],
      "conditions": Condition,
      "enabled": false,
      "id": "xyz789",
      "resource": "adjustment"
    }
  }
}

removeAdjustmentAirframe

Description

Remove an Airframe from an Adjustment

Response

Returns an Adjustment!

Arguments
Name Description
data - RemoveAdjustmentAirframeInput!

Example

Query
mutation removeAdjustmentAirframe($data: RemoveAdjustmentAirframeInput!) {
  removeAdjustmentAirframe(data: $data) {
    actions {
      ...AdjustmentActionFragment
    }
    airframes {
      ...AdjustmentAirframeFragment
    }
    allocations {
      ...AdjustmentAllocationFragment
    }
    categories
    collaborators {
      ...ActorFragment
    }
    costsExpenses {
      ...AdjustmentCostsExpensesFragment
    }
    creationDate
    documents {
      ...FileMetadataFragment
    }
    executiveSummary
    expert {
      ...ActorFragment
    }
    fees {
      ...AdjustmentFeesFragment
    }
    flights {
      ...AdjustmentFlightFragment
    }
    id
    images {
      ...FileMetadataFragment
    }
    indemnity {
      ...AdjustmentIndemnityFragment
    }
    labels {
      ...AdjustmentLabelFragment
    }
    lastUpdateDate
    legalEntities {
      ...AdjustmentLegalEntitiesFragment
    }
    lossDate
    lossLocation {
      ...LocationFragment
    }
    lossNotice {
      ...LossNoticeFragment
    }
    marketReferences {
      ...MarketReferenceFragment
    }
    operation {
      ...ActorFragment
    }
    owner {
      ...ActorFragment
    }
    recommendations
    reportDate
    reporter {
      ...ActorFragment
    }
    reportingCurrency
    reports {
      ...AdjustmentReportFragment
    }
    stakeholderReferences {
      ...StakeholderReferenceFragment
    }
    status
    statusHistory {
      ...AdjustmentStatusChangeFragment
    }
    transitions {
      ...AdjustmentTransitionFragment
    }
    unpublishedChanges
    zone {
      ...ZoneFragment
    }
  }
}
Variables
{"data": RemoveAdjustmentAirframeInput}
Response
{
  "data": {
    "removeAdjustmentAirframe": {
      "actions": [AdjustmentAction],
      "airframes": [AdjustmentAirframe],
      "allocations": [AdjustmentAllocation],
      "categories": ["aircraft_hull"],
      "collaborators": [Actor],
      "costsExpenses": AdjustmentCostsExpenses,
      "creationDate": "2007-12-03T10:15:30Z",
      "documents": [FileMetadata],
      "executiveSummary": {},
      "expert": Actor,
      "fees": AdjustmentFees,
      "flights": [AdjustmentFlight],
      "id": "xyz789",
      "images": [FileMetadata],
      "indemnity": AdjustmentIndemnity,
      "labels": [AdjustmentLabel],
      "lastUpdateDate": "2007-12-03T10:15:30Z",
      "legalEntities": AdjustmentLegalEntities,
      "lossDate": "2007-12-03T10:15:30Z",
      "lossLocation": Location,
      "lossNotice": LossNotice,
      "marketReferences": [MarketReference],
      "operation": Actor,
      "owner": Actor,
      "recommendations": {},
      "reportDate": "2007-12-03T10:15:30Z",
      "reporter": Actor,
      "reportingCurrency": "abc123",
      "reports": [AdjustmentReport],
      "stakeholderReferences": [StakeholderReference],
      "status": "abeyance",
      "statusHistory": [AdjustmentStatusChange],
      "transitions": [AdjustmentTransition],
      "unpublishedChanges": true,
      "zone": Zone
    }
  }
}

removeAdjustmentAirframeCrewMember

Description

Remove a Crew Member from an Adjustment Airframe

Response

Returns an Adjustment!

Arguments
Name Description
data - RemoveAdjustmentAirframeCrewMemberInput!

Example

Query
mutation removeAdjustmentAirframeCrewMember($data: RemoveAdjustmentAirframeCrewMemberInput!) {
  removeAdjustmentAirframeCrewMember(data: $data) {
    actions {
      ...AdjustmentActionFragment
    }
    airframes {
      ...AdjustmentAirframeFragment
    }
    allocations {
      ...AdjustmentAllocationFragment
    }
    categories
    collaborators {
      ...ActorFragment
    }
    costsExpenses {
      ...AdjustmentCostsExpensesFragment
    }
    creationDate
    documents {
      ...FileMetadataFragment
    }
    executiveSummary
    expert {
      ...ActorFragment
    }
    fees {
      ...AdjustmentFeesFragment
    }
    flights {
      ...AdjustmentFlightFragment
    }
    id
    images {
      ...FileMetadataFragment
    }
    indemnity {
      ...AdjustmentIndemnityFragment
    }
    labels {
      ...AdjustmentLabelFragment
    }
    lastUpdateDate
    legalEntities {
      ...AdjustmentLegalEntitiesFragment
    }
    lossDate
    lossLocation {
      ...LocationFragment
    }
    lossNotice {
      ...LossNoticeFragment
    }
    marketReferences {
      ...MarketReferenceFragment
    }
    operation {
      ...ActorFragment
    }
    owner {
      ...ActorFragment
    }
    recommendations
    reportDate
    reporter {
      ...ActorFragment
    }
    reportingCurrency
    reports {
      ...AdjustmentReportFragment
    }
    stakeholderReferences {
      ...StakeholderReferenceFragment
    }
    status
    statusHistory {
      ...AdjustmentStatusChangeFragment
    }
    transitions {
      ...AdjustmentTransitionFragment
    }
    unpublishedChanges
    zone {
      ...ZoneFragment
    }
  }
}
Variables
{"data": RemoveAdjustmentAirframeCrewMemberInput}
Response
{
  "data": {
    "removeAdjustmentAirframeCrewMember": {
      "actions": [AdjustmentAction],
      "airframes": [AdjustmentAirframe],
      "allocations": [AdjustmentAllocation],
      "categories": ["aircraft_hull"],
      "collaborators": [Actor],
      "costsExpenses": AdjustmentCostsExpenses,
      "creationDate": "2007-12-03T10:15:30Z",
      "documents": [FileMetadata],
      "executiveSummary": {},
      "expert": Actor,
      "fees": AdjustmentFees,
      "flights": [AdjustmentFlight],
      "id": "abc123",
      "images": [FileMetadata],
      "indemnity": AdjustmentIndemnity,
      "labels": [AdjustmentLabel],
      "lastUpdateDate": "2007-12-03T10:15:30Z",
      "legalEntities": AdjustmentLegalEntities,
      "lossDate": "2007-12-03T10:15:30Z",
      "lossLocation": Location,
      "lossNotice": LossNotice,
      "marketReferences": [MarketReference],
      "operation": Actor,
      "owner": Actor,
      "recommendations": {},
      "reportDate": "2007-12-03T10:15:30Z",
      "reporter": Actor,
      "reportingCurrency": "xyz789",
      "reports": [AdjustmentReport],
      "stakeholderReferences": [StakeholderReference],
      "status": "abeyance",
      "statusHistory": [AdjustmentStatusChange],
      "transitions": [AdjustmentTransition],
      "unpublishedChanges": true,
      "zone": Zone
    }
  }
}

removeAdjustmentAirframeCrewMemberExperience

Description

Remove the Experience of an Adjustment Airframe Crew Member

Response

Returns an Adjustment!

Arguments
Name Description
data - RemoveAdjustmentAirframeCrewMemberExperienceInput!

Example

Query
mutation removeAdjustmentAirframeCrewMemberExperience($data: RemoveAdjustmentAirframeCrewMemberExperienceInput!) {
  removeAdjustmentAirframeCrewMemberExperience(data: $data) {
    actions {
      ...AdjustmentActionFragment
    }
    airframes {
      ...AdjustmentAirframeFragment
    }
    allocations {
      ...AdjustmentAllocationFragment
    }
    categories
    collaborators {
      ...ActorFragment
    }
    costsExpenses {
      ...AdjustmentCostsExpensesFragment
    }
    creationDate
    documents {
      ...FileMetadataFragment
    }
    executiveSummary
    expert {
      ...ActorFragment
    }
    fees {
      ...AdjustmentFeesFragment
    }
    flights {
      ...AdjustmentFlightFragment
    }
    id
    images {
      ...FileMetadataFragment
    }
    indemnity {
      ...AdjustmentIndemnityFragment
    }
    labels {
      ...AdjustmentLabelFragment
    }
    lastUpdateDate
    legalEntities {
      ...AdjustmentLegalEntitiesFragment
    }
    lossDate
    lossLocation {
      ...LocationFragment
    }
    lossNotice {
      ...LossNoticeFragment
    }
    marketReferences {
      ...MarketReferenceFragment
    }
    operation {
      ...ActorFragment
    }
    owner {
      ...ActorFragment
    }
    recommendations
    reportDate
    reporter {
      ...ActorFragment
    }
    reportingCurrency
    reports {
      ...AdjustmentReportFragment
    }
    stakeholderReferences {
      ...StakeholderReferenceFragment
    }
    status
    statusHistory {
      ...AdjustmentStatusChangeFragment
    }
    transitions {
      ...AdjustmentTransitionFragment
    }
    unpublishedChanges
    zone {
      ...ZoneFragment
    }
  }
}
Variables
{
  "data": RemoveAdjustmentAirframeCrewMemberExperienceInput
}
Response
{
  "data": {
    "removeAdjustmentAirframeCrewMemberExperience": {
      "actions": [AdjustmentAction],
      "airframes": [AdjustmentAirframe],
      "allocations": [AdjustmentAllocation],
      "categories": ["aircraft_hull"],
      "collaborators": [Actor],
      "costsExpenses": AdjustmentCostsExpenses,
      "creationDate": "2007-12-03T10:15:30Z",
      "documents": [FileMetadata],
      "executiveSummary": {},
      "expert": Actor,
      "fees": AdjustmentFees,
      "flights": [AdjustmentFlight],
      "id": "abc123",
      "images": [FileMetadata],
      "indemnity": AdjustmentIndemnity,
      "labels": [AdjustmentLabel],
      "lastUpdateDate": "2007-12-03T10:15:30Z",
      "legalEntities": AdjustmentLegalEntities,
      "lossDate": "2007-12-03T10:15:30Z",
      "lossLocation": Location,
      "lossNotice": LossNotice,
      "marketReferences": [MarketReference],
      "operation": Actor,
      "owner": Actor,
      "recommendations": {},
      "reportDate": "2007-12-03T10:15:30Z",
      "reporter": Actor,
      "reportingCurrency": "abc123",
      "reports": [AdjustmentReport],
      "stakeholderReferences": [StakeholderReference],
      "status": "abeyance",
      "statusHistory": [AdjustmentStatusChange],
      "transitions": [AdjustmentTransition],
      "unpublishedChanges": false,
      "zone": Zone
    }
  }
}

removeAdjustmentAirframeCrewMemberFlightRole

Description

Remove the Flight Role of an Adjustment Airframe Crew Member

Response

Returns an Adjustment!

Arguments
Name Description
data - RemoveAdjustmentAirframeCrewMemberFlightRoleInput!

Example

Query
mutation removeAdjustmentAirframeCrewMemberFlightRole($data: RemoveAdjustmentAirframeCrewMemberFlightRoleInput!) {
  removeAdjustmentAirframeCrewMemberFlightRole(data: $data) {
    actions {
      ...AdjustmentActionFragment
    }
    airframes {
      ...AdjustmentAirframeFragment
    }
    allocations {
      ...AdjustmentAllocationFragment
    }
    categories
    collaborators {
      ...ActorFragment
    }
    costsExpenses {
      ...AdjustmentCostsExpensesFragment
    }
    creationDate
    documents {
      ...FileMetadataFragment
    }
    executiveSummary
    expert {
      ...ActorFragment
    }
    fees {
      ...AdjustmentFeesFragment
    }
    flights {
      ...AdjustmentFlightFragment
    }
    id
    images {
      ...FileMetadataFragment
    }
    indemnity {
      ...AdjustmentIndemnityFragment
    }
    labels {
      ...AdjustmentLabelFragment
    }
    lastUpdateDate
    legalEntities {
      ...AdjustmentLegalEntitiesFragment
    }
    lossDate
    lossLocation {
      ...LocationFragment
    }
    lossNotice {
      ...LossNoticeFragment
    }
    marketReferences {
      ...MarketReferenceFragment
    }
    operation {
      ...ActorFragment
    }
    owner {
      ...ActorFragment
    }
    recommendations
    reportDate
    reporter {
      ...ActorFragment
    }
    reportingCurrency
    reports {
      ...AdjustmentReportFragment
    }
    stakeholderReferences {
      ...StakeholderReferenceFragment
    }
    status
    statusHistory {
      ...AdjustmentStatusChangeFragment
    }
    transitions {
      ...AdjustmentTransitionFragment
    }
    unpublishedChanges
    zone {
      ...ZoneFragment
    }
  }
}
Variables
{
  "data": RemoveAdjustmentAirframeCrewMemberFlightRoleInput
}
Response
{
  "data": {
    "removeAdjustmentAirframeCrewMemberFlightRole": {
      "actions": [AdjustmentAction],
      "airframes": [AdjustmentAirframe],
      "allocations": [AdjustmentAllocation],
      "categories": ["aircraft_hull"],
      "collaborators": [Actor],
      "costsExpenses": AdjustmentCostsExpenses,
      "creationDate": "2007-12-03T10:15:30Z",
      "documents": [FileMetadata],
      "executiveSummary": {},
      "expert": Actor,
      "fees": AdjustmentFees,
      "flights": [AdjustmentFlight],
      "id": "xyz789",
      "images": [FileMetadata],
      "indemnity": AdjustmentIndemnity,
      "labels": [AdjustmentLabel],
      "lastUpdateDate": "2007-12-03T10:15:30Z",
      "legalEntities": AdjustmentLegalEntities,
      "lossDate": "2007-12-03T10:15:30Z",
      "lossLocation": Location,
      "lossNotice": LossNotice,
      "marketReferences": [MarketReference],
      "operation": Actor,
      "owner": Actor,
      "recommendations": {},
      "reportDate": "2007-12-03T10:15:30Z",
      "reporter": Actor,
      "reportingCurrency": "abc123",
      "reports": [AdjustmentReport],
      "stakeholderReferences": [StakeholderReference],
      "status": "abeyance",
      "statusHistory": [AdjustmentStatusChange],
      "transitions": [AdjustmentTransition],
      "unpublishedChanges": true,
      "zone": Zone
    }
  }
}

removeAdjustmentAirframeCrewMemberWorkload

Description

Remove the Workload of an Adjustment Airframe Crew Member

Response

Returns an Adjustment!

Arguments
Name Description
data - RemoveAdjustmentAirframeCrewMemberWorkloadInput!

Example

Query
mutation removeAdjustmentAirframeCrewMemberWorkload($data: RemoveAdjustmentAirframeCrewMemberWorkloadInput!) {
  removeAdjustmentAirframeCrewMemberWorkload(data: $data) {
    actions {
      ...AdjustmentActionFragment
    }
    airframes {
      ...AdjustmentAirframeFragment
    }
    allocations {
      ...AdjustmentAllocationFragment
    }
    categories
    collaborators {
      ...ActorFragment
    }
    costsExpenses {
      ...AdjustmentCostsExpensesFragment
    }
    creationDate
    documents {
      ...FileMetadataFragment
    }
    executiveSummary
    expert {
      ...ActorFragment
    }
    fees {
      ...AdjustmentFeesFragment
    }
    flights {
      ...AdjustmentFlightFragment
    }
    id
    images {
      ...FileMetadataFragment
    }
    indemnity {
      ...AdjustmentIndemnityFragment
    }
    labels {
      ...AdjustmentLabelFragment
    }
    lastUpdateDate
    legalEntities {
      ...AdjustmentLegalEntitiesFragment
    }
    lossDate
    lossLocation {
      ...LocationFragment
    }
    lossNotice {
      ...LossNoticeFragment
    }
    marketReferences {
      ...MarketReferenceFragment
    }
    operation {
      ...ActorFragment
    }
    owner {
      ...ActorFragment
    }
    recommendations
    reportDate
    reporter {
      ...ActorFragment
    }
    reportingCurrency
    reports {
      ...AdjustmentReportFragment
    }
    stakeholderReferences {
      ...StakeholderReferenceFragment
    }
    status
    statusHistory {
      ...AdjustmentStatusChangeFragment
    }
    transitions {
      ...AdjustmentTransitionFragment
    }
    unpublishedChanges
    zone {
      ...ZoneFragment
    }
  }
}
Variables
{"data": RemoveAdjustmentAirframeCrewMemberWorkloadInput}
Response
{
  "data": {
    "removeAdjustmentAirframeCrewMemberWorkload": {
      "actions": [AdjustmentAction],
      "airframes": [AdjustmentAirframe],
      "allocations": [AdjustmentAllocation],
      "categories": ["aircraft_hull"],
      "collaborators": [Actor],
      "costsExpenses": AdjustmentCostsExpenses,
      "creationDate": "2007-12-03T10:15:30Z",
      "documents": [FileMetadata],
      "executiveSummary": {},
      "expert": Actor,
      "fees": AdjustmentFees,
      "flights": [AdjustmentFlight],
      "id": "xyz789",
      "images": [FileMetadata],
      "indemnity": AdjustmentIndemnity,
      "labels": [AdjustmentLabel],
      "lastUpdateDate": "2007-12-03T10:15:30Z",
      "legalEntities": AdjustmentLegalEntities,
      "lossDate": "2007-12-03T10:15:30Z",
      "lossLocation": Location,
      "lossNotice": LossNotice,
      "marketReferences": [MarketReference],
      "operation": Actor,
      "owner": Actor,
      "recommendations": {},
      "reportDate": "2007-12-03T10:15:30Z",
      "reporter": Actor,
      "reportingCurrency": "abc123",
      "reports": [AdjustmentReport],
      "stakeholderReferences": [StakeholderReference],
      "status": "abeyance",
      "statusHistory": [AdjustmentStatusChange],
      "transitions": [AdjustmentTransition],
      "unpublishedChanges": true,
      "zone": Zone
    }
  }
}

removeAdjustmentAirframeEngine

Description

Remove an Engine from an Adjustment Airframe

Response

Returns an Adjustment!

Arguments
Name Description
data - RemoveAdjustmentAirframeEngineInput!

Example

Query
mutation removeAdjustmentAirframeEngine($data: RemoveAdjustmentAirframeEngineInput!) {
  removeAdjustmentAirframeEngine(data: $data) {
    actions {
      ...AdjustmentActionFragment
    }
    airframes {
      ...AdjustmentAirframeFragment
    }
    allocations {
      ...AdjustmentAllocationFragment
    }
    categories
    collaborators {
      ...ActorFragment
    }
    costsExpenses {
      ...AdjustmentCostsExpensesFragment
    }
    creationDate
    documents {
      ...FileMetadataFragment
    }
    executiveSummary
    expert {
      ...ActorFragment
    }
    fees {
      ...AdjustmentFeesFragment
    }
    flights {
      ...AdjustmentFlightFragment
    }
    id
    images {
      ...FileMetadataFragment
    }
    indemnity {
      ...AdjustmentIndemnityFragment
    }
    labels {
      ...AdjustmentLabelFragment
    }
    lastUpdateDate
    legalEntities {
      ...AdjustmentLegalEntitiesFragment
    }
    lossDate
    lossLocation {
      ...LocationFragment
    }
    lossNotice {
      ...LossNoticeFragment
    }
    marketReferences {
      ...MarketReferenceFragment
    }
    operation {
      ...ActorFragment
    }
    owner {
      ...ActorFragment
    }
    recommendations
    reportDate
    reporter {
      ...ActorFragment
    }
    reportingCurrency
    reports {
      ...AdjustmentReportFragment
    }
    stakeholderReferences {
      ...StakeholderReferenceFragment
    }
    status
    statusHistory {
      ...AdjustmentStatusChangeFragment
    }
    transitions {
      ...AdjustmentTransitionFragment
    }
    unpublishedChanges
    zone {
      ...ZoneFragment
    }
  }
}
Variables
{"data": RemoveAdjustmentAirframeEngineInput}
Response
{
  "data": {
    "removeAdjustmentAirframeEngine": {
      "actions": [AdjustmentAction],
      "airframes": [AdjustmentAirframe],
      "allocations": [AdjustmentAllocation],
      "categories": ["aircraft_hull"],
      "collaborators": [Actor],
      "costsExpenses": AdjustmentCostsExpenses,
      "creationDate": "2007-12-03T10:15:30Z",
      "documents": [FileMetadata],
      "executiveSummary": {},
      "expert": Actor,
      "fees": AdjustmentFees,
      "flights": [AdjustmentFlight],
      "id": "xyz789",
      "images": [FileMetadata],
      "indemnity": AdjustmentIndemnity,
      "labels": [AdjustmentLabel],
      "lastUpdateDate": "2007-12-03T10:15:30Z",
      "legalEntities": AdjustmentLegalEntities,
      "lossDate": "2007-12-03T10:15:30Z",
      "lossLocation": Location,
      "lossNotice": LossNotice,
      "marketReferences": [MarketReference],
      "operation": Actor,
      "owner": Actor,
      "recommendations": {},
      "reportDate": "2007-12-03T10:15:30Z",
      "reporter": Actor,
      "reportingCurrency": "abc123",
      "reports": [AdjustmentReport],
      "stakeholderReferences": [StakeholderReference],
      "status": "abeyance",
      "statusHistory": [AdjustmentStatusChange],
      "transitions": [AdjustmentTransition],
      "unpublishedChanges": false,
      "zone": Zone
    }
  }
}

removeAdjustmentAirframeEngineDamage

Description

Remove Damage from an Adjustment Airframe Engine

Response

Returns an Adjustment!

Arguments
Name Description
data - RemoveAdjustmentAirframeEngineDamageInput!

Example

Query
mutation removeAdjustmentAirframeEngineDamage($data: RemoveAdjustmentAirframeEngineDamageInput!) {
  removeAdjustmentAirframeEngineDamage(data: $data) {
    actions {
      ...AdjustmentActionFragment
    }
    airframes {
      ...AdjustmentAirframeFragment
    }
    allocations {
      ...AdjustmentAllocationFragment
    }
    categories
    collaborators {
      ...ActorFragment
    }
    costsExpenses {
      ...AdjustmentCostsExpensesFragment
    }
    creationDate
    documents {
      ...FileMetadataFragment
    }
    executiveSummary
    expert {
      ...ActorFragment
    }
    fees {
      ...AdjustmentFeesFragment
    }
    flights {
      ...AdjustmentFlightFragment
    }
    id
    images {
      ...FileMetadataFragment
    }
    indemnity {
      ...AdjustmentIndemnityFragment
    }
    labels {
      ...AdjustmentLabelFragment
    }
    lastUpdateDate
    legalEntities {
      ...AdjustmentLegalEntitiesFragment
    }
    lossDate
    lossLocation {
      ...LocationFragment
    }
    lossNotice {
      ...LossNoticeFragment
    }
    marketReferences {
      ...MarketReferenceFragment
    }
    operation {
      ...ActorFragment
    }
    owner {
      ...ActorFragment
    }
    recommendations
    reportDate
    reporter {
      ...ActorFragment
    }
    reportingCurrency
    reports {
      ...AdjustmentReportFragment
    }
    stakeholderReferences {
      ...StakeholderReferenceFragment
    }
    status
    statusHistory {
      ...AdjustmentStatusChangeFragment
    }
    transitions {
      ...AdjustmentTransitionFragment
    }
    unpublishedChanges
    zone {
      ...ZoneFragment
    }
  }
}
Variables
{"data": RemoveAdjustmentAirframeEngineDamageInput}
Response
{
  "data": {
    "removeAdjustmentAirframeEngineDamage": {
      "actions": [AdjustmentAction],
      "airframes": [AdjustmentAirframe],
      "allocations": [AdjustmentAllocation],
      "categories": ["aircraft_hull"],
      "collaborators": [Actor],
      "costsExpenses": AdjustmentCostsExpenses,
      "creationDate": "2007-12-03T10:15:30Z",
      "documents": [FileMetadata],
      "executiveSummary": {},
      "expert": Actor,
      "fees": AdjustmentFees,
      "flights": [AdjustmentFlight],
      "id": "abc123",
      "images": [FileMetadata],
      "indemnity": AdjustmentIndemnity,
      "labels": [AdjustmentLabel],
      "lastUpdateDate": "2007-12-03T10:15:30Z",
      "legalEntities": AdjustmentLegalEntities,
      "lossDate": "2007-12-03T10:15:30Z",
      "lossLocation": Location,
      "lossNotice": LossNotice,
      "marketReferences": [MarketReference],
      "operation": Actor,
      "owner": Actor,
      "recommendations": {},
      "reportDate": "2007-12-03T10:15:30Z",
      "reporter": Actor,
      "reportingCurrency": "abc123",
      "reports": [AdjustmentReport],
      "stakeholderReferences": [StakeholderReference],
      "status": "abeyance",
      "statusHistory": [AdjustmentStatusChange],
      "transitions": [AdjustmentTransition],
      "unpublishedChanges": true,
      "zone": Zone
    }
  }
}

removeAdjustmentAirframeEngineMaintenanceCheck

Description

Remove a Maintenance Check from an Adjustment Airframe Engine

Response

Returns an Adjustment!

Arguments
Name Description
data - RemoveAdjustmentAirframeEngineMaintenanceCheckInput!

Example

Query
mutation removeAdjustmentAirframeEngineMaintenanceCheck($data: RemoveAdjustmentAirframeEngineMaintenanceCheckInput!) {
  removeAdjustmentAirframeEngineMaintenanceCheck(data: $data) {
    actions {
      ...AdjustmentActionFragment
    }
    airframes {
      ...AdjustmentAirframeFragment
    }
    allocations {
      ...AdjustmentAllocationFragment
    }
    categories
    collaborators {
      ...ActorFragment
    }
    costsExpenses {
      ...AdjustmentCostsExpensesFragment
    }
    creationDate
    documents {
      ...FileMetadataFragment
    }
    executiveSummary
    expert {
      ...ActorFragment
    }
    fees {
      ...AdjustmentFeesFragment
    }
    flights {
      ...AdjustmentFlightFragment
    }
    id
    images {
      ...FileMetadataFragment
    }
    indemnity {
      ...AdjustmentIndemnityFragment
    }
    labels {
      ...AdjustmentLabelFragment
    }
    lastUpdateDate
    legalEntities {
      ...AdjustmentLegalEntitiesFragment
    }
    lossDate
    lossLocation {
      ...LocationFragment
    }
    lossNotice {
      ...LossNoticeFragment
    }
    marketReferences {
      ...MarketReferenceFragment
    }
    operation {
      ...ActorFragment
    }
    owner {
      ...ActorFragment
    }
    recommendations
    reportDate
    reporter {
      ...ActorFragment
    }
    reportingCurrency
    reports {
      ...AdjustmentReportFragment
    }
    stakeholderReferences {
      ...StakeholderReferenceFragment
    }
    status
    statusHistory {
      ...AdjustmentStatusChangeFragment
    }
    transitions {
      ...AdjustmentTransitionFragment
    }
    unpublishedChanges
    zone {
      ...ZoneFragment
    }
  }
}
Variables
{
  "data": RemoveAdjustmentAirframeEngineMaintenanceCheckInput
}
Response
{
  "data": {
    "removeAdjustmentAirframeEngineMaintenanceCheck": {
      "actions": [AdjustmentAction],
      "airframes": [AdjustmentAirframe],
      "allocations": [AdjustmentAllocation],
      "categories": ["aircraft_hull"],
      "collaborators": [Actor],
      "costsExpenses": AdjustmentCostsExpenses,
      "creationDate": "2007-12-03T10:15:30Z",
      "documents": [FileMetadata],
      "executiveSummary": {},
      "expert": Actor,
      "fees": AdjustmentFees,
      "flights": [AdjustmentFlight],
      "id": "abc123",
      "images": [FileMetadata],
      "indemnity": AdjustmentIndemnity,
      "labels": [AdjustmentLabel],
      "lastUpdateDate": "2007-12-03T10:15:30Z",
      "legalEntities": AdjustmentLegalEntities,
      "lossDate": "2007-12-03T10:15:30Z",
      "lossLocation": Location,
      "lossNotice": LossNotice,
      "marketReferences": [MarketReference],
      "operation": Actor,
      "owner": Actor,
      "recommendations": {},
      "reportDate": "2007-12-03T10:15:30Z",
      "reporter": Actor,
      "reportingCurrency": "abc123",
      "reports": [AdjustmentReport],
      "stakeholderReferences": [StakeholderReference],
      "status": "abeyance",
      "statusHistory": [AdjustmentStatusChange],
      "transitions": [AdjustmentTransition],
      "unpublishedChanges": true,
      "zone": Zone
    }
  }
}

removeAdjustmentAirframeMaintenanceCheck

Description

Remove a Maintenance Check from an Adjustment Airframe

Response

Returns an Adjustment!

Arguments
Name Description
data - RemoveAdjustmentAirframeMaintenanceCheckInput!

Example

Query
mutation removeAdjustmentAirframeMaintenanceCheck($data: RemoveAdjustmentAirframeMaintenanceCheckInput!) {
  removeAdjustmentAirframeMaintenanceCheck(data: $data) {
    actions {
      ...AdjustmentActionFragment
    }
    airframes {
      ...AdjustmentAirframeFragment
    }
    allocations {
      ...AdjustmentAllocationFragment
    }
    categories
    collaborators {
      ...ActorFragment
    }
    costsExpenses {
      ...AdjustmentCostsExpensesFragment
    }
    creationDate
    documents {
      ...FileMetadataFragment
    }
    executiveSummary
    expert {
      ...ActorFragment
    }
    fees {
      ...AdjustmentFeesFragment
    }
    flights {
      ...AdjustmentFlightFragment
    }
    id
    images {
      ...FileMetadataFragment
    }
    indemnity {
      ...AdjustmentIndemnityFragment
    }
    labels {
      ...AdjustmentLabelFragment
    }
    lastUpdateDate
    legalEntities {
      ...AdjustmentLegalEntitiesFragment
    }
    lossDate
    lossLocation {
      ...LocationFragment
    }
    lossNotice {
      ...LossNoticeFragment
    }
    marketReferences {
      ...MarketReferenceFragment
    }
    operation {
      ...ActorFragment
    }
    owner {
      ...ActorFragment
    }
    recommendations
    reportDate
    reporter {
      ...ActorFragment
    }
    reportingCurrency
    reports {
      ...AdjustmentReportFragment
    }
    stakeholderReferences {
      ...StakeholderReferenceFragment
    }
    status
    statusHistory {
      ...AdjustmentStatusChangeFragment
    }
    transitions {
      ...AdjustmentTransitionFragment
    }
    unpublishedChanges
    zone {
      ...ZoneFragment
    }
  }
}
Variables
{"data": RemoveAdjustmentAirframeMaintenanceCheckInput}
Response
{
  "data": {
    "removeAdjustmentAirframeMaintenanceCheck": {
      "actions": [AdjustmentAction],
      "airframes": [AdjustmentAirframe],
      "allocations": [AdjustmentAllocation],
      "categories": ["aircraft_hull"],
      "collaborators": [Actor],
      "costsExpenses": AdjustmentCostsExpenses,
      "creationDate": "2007-12-03T10:15:30Z",
      "documents": [FileMetadata],
      "executiveSummary": {},
      "expert": Actor,
      "fees": AdjustmentFees,
      "flights": [AdjustmentFlight],
      "id": "abc123",
      "images": [FileMetadata],
      "indemnity": AdjustmentIndemnity,
      "labels": [AdjustmentLabel],
      "lastUpdateDate": "2007-12-03T10:15:30Z",
      "legalEntities": AdjustmentLegalEntities,
      "lossDate": "2007-12-03T10:15:30Z",
      "lossLocation": Location,
      "lossNotice": LossNotice,
      "marketReferences": [MarketReference],
      "operation": Actor,
      "owner": Actor,
      "recommendations": {},
      "reportDate": "2007-12-03T10:15:30Z",
      "reporter": Actor,
      "reportingCurrency": "xyz789",
      "reports": [AdjustmentReport],
      "stakeholderReferences": [StakeholderReference],
      "status": "abeyance",
      "statusHistory": [AdjustmentStatusChange],
      "transitions": [AdjustmentTransition],
      "unpublishedChanges": false,
      "zone": Zone
    }
  }
}

removeAdjustmentAirframePartDamage

Description

Remove Damage from an Adjustment Airframe Part

Response

Returns an Adjustment!

Arguments
Name Description
data - RemoveAdjustmentAirframePartDamageInput!

Example

Query
mutation removeAdjustmentAirframePartDamage($data: RemoveAdjustmentAirframePartDamageInput!) {
  removeAdjustmentAirframePartDamage(data: $data) {
    actions {
      ...AdjustmentActionFragment
    }
    airframes {
      ...AdjustmentAirframeFragment
    }
    allocations {
      ...AdjustmentAllocationFragment
    }
    categories
    collaborators {
      ...ActorFragment
    }
    costsExpenses {
      ...AdjustmentCostsExpensesFragment
    }
    creationDate
    documents {
      ...FileMetadataFragment
    }
    executiveSummary
    expert {
      ...ActorFragment
    }
    fees {
      ...AdjustmentFeesFragment
    }
    flights {
      ...AdjustmentFlightFragment
    }
    id
    images {
      ...FileMetadataFragment
    }
    indemnity {
      ...AdjustmentIndemnityFragment
    }
    labels {
      ...AdjustmentLabelFragment
    }
    lastUpdateDate
    legalEntities {
      ...AdjustmentLegalEntitiesFragment
    }
    lossDate
    lossLocation {
      ...LocationFragment
    }
    lossNotice {
      ...LossNoticeFragment
    }
    marketReferences {
      ...MarketReferenceFragment
    }
    operation {
      ...ActorFragment
    }
    owner {
      ...ActorFragment
    }
    recommendations
    reportDate
    reporter {
      ...ActorFragment
    }
    reportingCurrency
    reports {
      ...AdjustmentReportFragment
    }
    stakeholderReferences {
      ...StakeholderReferenceFragment
    }
    status
    statusHistory {
      ...AdjustmentStatusChangeFragment
    }
    transitions {
      ...AdjustmentTransitionFragment
    }
    unpublishedChanges
    zone {
      ...ZoneFragment
    }
  }
}
Variables
{"data": RemoveAdjustmentAirframePartDamageInput}
Response
{
  "data": {
    "removeAdjustmentAirframePartDamage": {
      "actions": [AdjustmentAction],
      "airframes": [AdjustmentAirframe],
      "allocations": [AdjustmentAllocation],
      "categories": ["aircraft_hull"],
      "collaborators": [Actor],
      "costsExpenses": AdjustmentCostsExpenses,
      "creationDate": "2007-12-03T10:15:30Z",
      "documents": [FileMetadata],
      "executiveSummary": {},
      "expert": Actor,
      "fees": AdjustmentFees,
      "flights": [AdjustmentFlight],
      "id": "abc123",
      "images": [FileMetadata],
      "indemnity": AdjustmentIndemnity,
      "labels": [AdjustmentLabel],
      "lastUpdateDate": "2007-12-03T10:15:30Z",
      "legalEntities": AdjustmentLegalEntities,
      "lossDate": "2007-12-03T10:15:30Z",
      "lossLocation": Location,
      "lossNotice": LossNotice,
      "marketReferences": [MarketReference],
      "operation": Actor,
      "owner": Actor,
      "recommendations": {},
      "reportDate": "2007-12-03T10:15:30Z",
      "reporter": Actor,
      "reportingCurrency": "xyz789",
      "reports": [AdjustmentReport],
      "stakeholderReferences": [StakeholderReference],
      "status": "abeyance",
      "statusHistory": [AdjustmentStatusChange],
      "transitions": [AdjustmentTransition],
      "unpublishedChanges": false,
      "zone": Zone
    }
  }
}

removeAdjustmentCollaborator

Description

Remove a Collaborator from an Adjustment

Response

Returns an Adjustment!

Arguments
Name Description
data - RemoveAdjustmentCollaboratorInput!

Example

Query
mutation removeAdjustmentCollaborator($data: RemoveAdjustmentCollaboratorInput!) {
  removeAdjustmentCollaborator(data: $data) {
    actions {
      ...AdjustmentActionFragment
    }
    airframes {
      ...AdjustmentAirframeFragment
    }
    allocations {
      ...AdjustmentAllocationFragment
    }
    categories
    collaborators {
      ...ActorFragment
    }
    costsExpenses {
      ...AdjustmentCostsExpensesFragment
    }
    creationDate
    documents {
      ...FileMetadataFragment
    }
    executiveSummary
    expert {
      ...ActorFragment
    }
    fees {
      ...AdjustmentFeesFragment
    }
    flights {
      ...AdjustmentFlightFragment
    }
    id
    images {
      ...FileMetadataFragment
    }
    indemnity {
      ...AdjustmentIndemnityFragment
    }
    labels {
      ...AdjustmentLabelFragment
    }
    lastUpdateDate
    legalEntities {
      ...AdjustmentLegalEntitiesFragment
    }
    lossDate
    lossLocation {
      ...LocationFragment
    }
    lossNotice {
      ...LossNoticeFragment
    }
    marketReferences {
      ...MarketReferenceFragment
    }
    operation {
      ...ActorFragment
    }
    owner {
      ...ActorFragment
    }
    recommendations
    reportDate
    reporter {
      ...ActorFragment
    }
    reportingCurrency
    reports {
      ...AdjustmentReportFragment
    }
    stakeholderReferences {
      ...StakeholderReferenceFragment
    }
    status
    statusHistory {
      ...AdjustmentStatusChangeFragment
    }
    transitions {
      ...AdjustmentTransitionFragment
    }
    unpublishedChanges
    zone {
      ...ZoneFragment
    }
  }
}
Variables
{"data": RemoveAdjustmentCollaboratorInput}
Response
{
  "data": {
    "removeAdjustmentCollaborator": {
      "actions": [AdjustmentAction],
      "airframes": [AdjustmentAirframe],
      "allocations": [AdjustmentAllocation],
      "categories": ["aircraft_hull"],
      "collaborators": [Actor],
      "costsExpenses": AdjustmentCostsExpenses,
      "creationDate": "2007-12-03T10:15:30Z",
      "documents": [FileMetadata],
      "executiveSummary": {},
      "expert": Actor,
      "fees": AdjustmentFees,
      "flights": [AdjustmentFlight],
      "id": "abc123",
      "images": [FileMetadata],
      "indemnity": AdjustmentIndemnity,
      "labels": [AdjustmentLabel],
      "lastUpdateDate": "2007-12-03T10:15:30Z",
      "legalEntities": AdjustmentLegalEntities,
      "lossDate": "2007-12-03T10:15:30Z",
      "lossLocation": Location,
      "lossNotice": LossNotice,
      "marketReferences": [MarketReference],
      "operation": Actor,
      "owner": Actor,
      "recommendations": {},
      "reportDate": "2007-12-03T10:15:30Z",
      "reporter": Actor,
      "reportingCurrency": "abc123",
      "reports": [AdjustmentReport],
      "stakeholderReferences": [StakeholderReference],
      "status": "abeyance",
      "statusHistory": [AdjustmentStatusChange],
      "transitions": [AdjustmentTransition],
      "unpublishedChanges": true,
      "zone": Zone
    }
  }
}

removeAdjustmentCompany

Description

Remove a Company/Organisation from an Adjustment

Response

Returns an Adjustment!

Arguments
Name Description
data - RemoveAdjustmentCompanyInput!

Example

Query
mutation removeAdjustmentCompany($data: RemoveAdjustmentCompanyInput!) {
  removeAdjustmentCompany(data: $data) {
    actions {
      ...AdjustmentActionFragment
    }
    airframes {
      ...AdjustmentAirframeFragment
    }
    allocations {
      ...AdjustmentAllocationFragment
    }
    categories
    collaborators {
      ...ActorFragment
    }
    costsExpenses {
      ...AdjustmentCostsExpensesFragment
    }
    creationDate
    documents {
      ...FileMetadataFragment
    }
    executiveSummary
    expert {
      ...ActorFragment
    }
    fees {
      ...AdjustmentFeesFragment
    }
    flights {
      ...AdjustmentFlightFragment
    }
    id
    images {
      ...FileMetadataFragment
    }
    indemnity {
      ...AdjustmentIndemnityFragment
    }
    labels {
      ...AdjustmentLabelFragment
    }
    lastUpdateDate
    legalEntities {
      ...AdjustmentLegalEntitiesFragment
    }
    lossDate
    lossLocation {
      ...LocationFragment
    }
    lossNotice {
      ...LossNoticeFragment
    }
    marketReferences {
      ...MarketReferenceFragment
    }
    operation {
      ...ActorFragment
    }
    owner {
      ...ActorFragment
    }
    recommendations
    reportDate
    reporter {
      ...ActorFragment
    }
    reportingCurrency
    reports {
      ...AdjustmentReportFragment
    }
    stakeholderReferences {
      ...StakeholderReferenceFragment
    }
    status
    statusHistory {
      ...AdjustmentStatusChangeFragment
    }
    transitions {
      ...AdjustmentTransitionFragment
    }
    unpublishedChanges
    zone {
      ...ZoneFragment
    }
  }
}
Variables
{"data": RemoveAdjustmentCompanyInput}
Response
{
  "data": {
    "removeAdjustmentCompany": {
      "actions": [AdjustmentAction],
      "airframes": [AdjustmentAirframe],
      "allocations": [AdjustmentAllocation],
      "categories": ["aircraft_hull"],
      "collaborators": [Actor],
      "costsExpenses": AdjustmentCostsExpenses,
      "creationDate": "2007-12-03T10:15:30Z",
      "documents": [FileMetadata],
      "executiveSummary": {},
      "expert": Actor,
      "fees": AdjustmentFees,
      "flights": [AdjustmentFlight],
      "id": "xyz789",
      "images": [FileMetadata],
      "indemnity": AdjustmentIndemnity,
      "labels": [AdjustmentLabel],
      "lastUpdateDate": "2007-12-03T10:15:30Z",
      "legalEntities": AdjustmentLegalEntities,
      "lossDate": "2007-12-03T10:15:30Z",
      "lossLocation": Location,
      "lossNotice": LossNotice,
      "marketReferences": [MarketReference],
      "operation": Actor,
      "owner": Actor,
      "recommendations": {},
      "reportDate": "2007-12-03T10:15:30Z",
      "reporter": Actor,
      "reportingCurrency": "abc123",
      "reports": [AdjustmentReport],
      "stakeholderReferences": [StakeholderReference],
      "status": "abeyance",
      "statusHistory": [AdjustmentStatusChange],
      "transitions": [AdjustmentTransition],
      "unpublishedChanges": false,
      "zone": Zone
    }
  }
}

removeAdjustmentCostExpensePayment

Description

Remove an Adjustment Payment/Disbursement

Response

Returns an Adjustment!

Arguments
Name Description
data - RemoveAdjustmentCostExpensePaymentInput!

Example

Query
mutation removeAdjustmentCostExpensePayment($data: RemoveAdjustmentCostExpensePaymentInput!) {
  removeAdjustmentCostExpensePayment(data: $data) {
    actions {
      ...AdjustmentActionFragment
    }
    airframes {
      ...AdjustmentAirframeFragment
    }
    allocations {
      ...AdjustmentAllocationFragment
    }
    categories
    collaborators {
      ...ActorFragment
    }
    costsExpenses {
      ...AdjustmentCostsExpensesFragment
    }
    creationDate
    documents {
      ...FileMetadataFragment
    }
    executiveSummary
    expert {
      ...ActorFragment
    }
    fees {
      ...AdjustmentFeesFragment
    }
    flights {
      ...AdjustmentFlightFragment
    }
    id
    images {
      ...FileMetadataFragment
    }
    indemnity {
      ...AdjustmentIndemnityFragment
    }
    labels {
      ...AdjustmentLabelFragment
    }
    lastUpdateDate
    legalEntities {
      ...AdjustmentLegalEntitiesFragment
    }
    lossDate
    lossLocation {
      ...LocationFragment
    }
    lossNotice {
      ...LossNoticeFragment
    }
    marketReferences {
      ...MarketReferenceFragment
    }
    operation {
      ...ActorFragment
    }
    owner {
      ...ActorFragment
    }
    recommendations
    reportDate
    reporter {
      ...ActorFragment
    }
    reportingCurrency
    reports {
      ...AdjustmentReportFragment
    }
    stakeholderReferences {
      ...StakeholderReferenceFragment
    }
    status
    statusHistory {
      ...AdjustmentStatusChangeFragment
    }
    transitions {
      ...AdjustmentTransitionFragment
    }
    unpublishedChanges
    zone {
      ...ZoneFragment
    }
  }
}
Variables
{"data": RemoveAdjustmentCostExpensePaymentInput}
Response
{
  "data": {
    "removeAdjustmentCostExpensePayment": {
      "actions": [AdjustmentAction],
      "airframes": [AdjustmentAirframe],
      "allocations": [AdjustmentAllocation],
      "categories": ["aircraft_hull"],
      "collaborators": [Actor],
      "costsExpenses": AdjustmentCostsExpenses,
      "creationDate": "2007-12-03T10:15:30Z",
      "documents": [FileMetadata],
      "executiveSummary": {},
      "expert": Actor,
      "fees": AdjustmentFees,
      "flights": [AdjustmentFlight],
      "id": "xyz789",
      "images": [FileMetadata],
      "indemnity": AdjustmentIndemnity,
      "labels": [AdjustmentLabel],
      "lastUpdateDate": "2007-12-03T10:15:30Z",
      "legalEntities": AdjustmentLegalEntities,
      "lossDate": "2007-12-03T10:15:30Z",
      "lossLocation": Location,
      "lossNotice": LossNotice,
      "marketReferences": [MarketReference],
      "operation": Actor,
      "owner": Actor,
      "recommendations": {},
      "reportDate": "2007-12-03T10:15:30Z",
      "reporter": Actor,
      "reportingCurrency": "xyz789",
      "reports": [AdjustmentReport],
      "stakeholderReferences": [StakeholderReference],
      "status": "abeyance",
      "statusHistory": [AdjustmentStatusChange],
      "transitions": [AdjustmentTransition],
      "unpublishedChanges": true,
      "zone": Zone
    }
  }
}

removeAdjustmentCostExpenseReserve

Description

Remove an Adjustment Cost & Expense Reserve

Response

Returns an Adjustment!

Arguments
Name Description
data - RemoveAdjustmentCostExpenseReserveInput!

Example

Query
mutation removeAdjustmentCostExpenseReserve($data: RemoveAdjustmentCostExpenseReserveInput!) {
  removeAdjustmentCostExpenseReserve(data: $data) {
    actions {
      ...AdjustmentActionFragment
    }
    airframes {
      ...AdjustmentAirframeFragment
    }
    allocations {
      ...AdjustmentAllocationFragment
    }
    categories
    collaborators {
      ...ActorFragment
    }
    costsExpenses {
      ...AdjustmentCostsExpensesFragment
    }
    creationDate
    documents {
      ...FileMetadataFragment
    }
    executiveSummary
    expert {
      ...ActorFragment
    }
    fees {
      ...AdjustmentFeesFragment
    }
    flights {
      ...AdjustmentFlightFragment
    }
    id
    images {
      ...FileMetadataFragment
    }
    indemnity {
      ...AdjustmentIndemnityFragment
    }
    labels {
      ...AdjustmentLabelFragment
    }
    lastUpdateDate
    legalEntities {
      ...AdjustmentLegalEntitiesFragment
    }
    lossDate
    lossLocation {
      ...LocationFragment
    }
    lossNotice {
      ...LossNoticeFragment
    }
    marketReferences {
      ...MarketReferenceFragment
    }
    operation {
      ...ActorFragment
    }
    owner {
      ...ActorFragment
    }
    recommendations
    reportDate
    reporter {
      ...ActorFragment
    }
    reportingCurrency
    reports {
      ...AdjustmentReportFragment
    }
    stakeholderReferences {
      ...StakeholderReferenceFragment
    }
    status
    statusHistory {
      ...AdjustmentStatusChangeFragment
    }
    transitions {
      ...AdjustmentTransitionFragment
    }
    unpublishedChanges
    zone {
      ...ZoneFragment
    }
  }
}
Variables
{"data": RemoveAdjustmentCostExpenseReserveInput}
Response
{
  "data": {
    "removeAdjustmentCostExpenseReserve": {
      "actions": [AdjustmentAction],
      "airframes": [AdjustmentAirframe],
      "allocations": [AdjustmentAllocation],
      "categories": ["aircraft_hull"],
      "collaborators": [Actor],
      "costsExpenses": AdjustmentCostsExpenses,
      "creationDate": "2007-12-03T10:15:30Z",
      "documents": [FileMetadata],
      "executiveSummary": {},
      "expert": Actor,
      "fees": AdjustmentFees,
      "flights": [AdjustmentFlight],
      "id": "xyz789",
      "images": [FileMetadata],
      "indemnity": AdjustmentIndemnity,
      "labels": [AdjustmentLabel],
      "lastUpdateDate": "2007-12-03T10:15:30Z",
      "legalEntities": AdjustmentLegalEntities,
      "lossDate": "2007-12-03T10:15:30Z",
      "lossLocation": Location,
      "lossNotice": LossNotice,
      "marketReferences": [MarketReference],
      "operation": Actor,
      "owner": Actor,
      "recommendations": {},
      "reportDate": "2007-12-03T10:15:30Z",
      "reporter": Actor,
      "reportingCurrency": "abc123",
      "reports": [AdjustmentReport],
      "stakeholderReferences": [StakeholderReference],
      "status": "abeyance",
      "statusHistory": [AdjustmentStatusChange],
      "transitions": [AdjustmentTransition],
      "unpublishedChanges": true,
      "zone": Zone
    }
  }
}

removeAdjustmentCustomLabel

Description

Remove a custom Label from an Adjustment

Response

Returns an Adjustment!

Arguments
Name Description
data - RemoveAdjustmentLabelInput!

Example

Query
mutation removeAdjustmentCustomLabel($data: RemoveAdjustmentLabelInput!) {
  removeAdjustmentCustomLabel(data: $data) {
    actions {
      ...AdjustmentActionFragment
    }
    airframes {
      ...AdjustmentAirframeFragment
    }
    allocations {
      ...AdjustmentAllocationFragment
    }
    categories
    collaborators {
      ...ActorFragment
    }
    costsExpenses {
      ...AdjustmentCostsExpensesFragment
    }
    creationDate
    documents {
      ...FileMetadataFragment
    }
    executiveSummary
    expert {
      ...ActorFragment
    }
    fees {
      ...AdjustmentFeesFragment
    }
    flights {
      ...AdjustmentFlightFragment
    }
    id
    images {
      ...FileMetadataFragment
    }
    indemnity {
      ...AdjustmentIndemnityFragment
    }
    labels {
      ...AdjustmentLabelFragment
    }
    lastUpdateDate
    legalEntities {
      ...AdjustmentLegalEntitiesFragment
    }
    lossDate
    lossLocation {
      ...LocationFragment
    }
    lossNotice {
      ...LossNoticeFragment
    }
    marketReferences {
      ...MarketReferenceFragment
    }
    operation {
      ...ActorFragment
    }
    owner {
      ...ActorFragment
    }
    recommendations
    reportDate
    reporter {
      ...ActorFragment
    }
    reportingCurrency
    reports {
      ...AdjustmentReportFragment
    }
    stakeholderReferences {
      ...StakeholderReferenceFragment
    }
    status
    statusHistory {
      ...AdjustmentStatusChangeFragment
    }
    transitions {
      ...AdjustmentTransitionFragment
    }
    unpublishedChanges
    zone {
      ...ZoneFragment
    }
  }
}
Variables
{"data": RemoveAdjustmentLabelInput}
Response
{
  "data": {
    "removeAdjustmentCustomLabel": {
      "actions": [AdjustmentAction],
      "airframes": [AdjustmentAirframe],
      "allocations": [AdjustmentAllocation],
      "categories": ["aircraft_hull"],
      "collaborators": [Actor],
      "costsExpenses": AdjustmentCostsExpenses,
      "creationDate": "2007-12-03T10:15:30Z",
      "documents": [FileMetadata],
      "executiveSummary": {},
      "expert": Actor,
      "fees": AdjustmentFees,
      "flights": [AdjustmentFlight],
      "id": "xyz789",
      "images": [FileMetadata],
      "indemnity": AdjustmentIndemnity,
      "labels": [AdjustmentLabel],
      "lastUpdateDate": "2007-12-03T10:15:30Z",
      "legalEntities": AdjustmentLegalEntities,
      "lossDate": "2007-12-03T10:15:30Z",
      "lossLocation": Location,
      "lossNotice": LossNotice,
      "marketReferences": [MarketReference],
      "operation": Actor,
      "owner": Actor,
      "recommendations": {},
      "reportDate": "2007-12-03T10:15:30Z",
      "reporter": Actor,
      "reportingCurrency": "xyz789",
      "reports": [AdjustmentReport],
      "stakeholderReferences": [StakeholderReference],
      "status": "abeyance",
      "statusHistory": [AdjustmentStatusChange],
      "transitions": [AdjustmentTransition],
      "unpublishedChanges": false,
      "zone": Zone
    }
  }
}

removeAdjustmentDocuments

Response

Returns an Adjustment!

Arguments
Name Description
data - RemoveAdjustmentDocumentsInput!

Example

Query
mutation removeAdjustmentDocuments($data: RemoveAdjustmentDocumentsInput!) {
  removeAdjustmentDocuments(data: $data) {
    actions {
      ...AdjustmentActionFragment
    }
    airframes {
      ...AdjustmentAirframeFragment
    }
    allocations {
      ...AdjustmentAllocationFragment
    }
    categories
    collaborators {
      ...ActorFragment
    }
    costsExpenses {
      ...AdjustmentCostsExpensesFragment
    }
    creationDate
    documents {
      ...FileMetadataFragment
    }
    executiveSummary
    expert {
      ...ActorFragment
    }
    fees {
      ...AdjustmentFeesFragment
    }
    flights {
      ...AdjustmentFlightFragment
    }
    id
    images {
      ...FileMetadataFragment
    }
    indemnity {
      ...AdjustmentIndemnityFragment
    }
    labels {
      ...AdjustmentLabelFragment
    }
    lastUpdateDate
    legalEntities {
      ...AdjustmentLegalEntitiesFragment
    }
    lossDate
    lossLocation {
      ...LocationFragment
    }
    lossNotice {
      ...LossNoticeFragment
    }
    marketReferences {
      ...MarketReferenceFragment
    }
    operation {
      ...ActorFragment
    }
    owner {
      ...ActorFragment
    }
    recommendations
    reportDate
    reporter {
      ...ActorFragment
    }
    reportingCurrency
    reports {
      ...AdjustmentReportFragment
    }
    stakeholderReferences {
      ...StakeholderReferenceFragment
    }
    status
    statusHistory {
      ...AdjustmentStatusChangeFragment
    }
    transitions {
      ...AdjustmentTransitionFragment
    }
    unpublishedChanges
    zone {
      ...ZoneFragment
    }
  }
}
Variables
{"data": RemoveAdjustmentDocumentsInput}
Response
{
  "data": {
    "removeAdjustmentDocuments": {
      "actions": [AdjustmentAction],
      "airframes": [AdjustmentAirframe],
      "allocations": [AdjustmentAllocation],
      "categories": ["aircraft_hull"],
      "collaborators": [Actor],
      "costsExpenses": AdjustmentCostsExpenses,
      "creationDate": "2007-12-03T10:15:30Z",
      "documents": [FileMetadata],
      "executiveSummary": {},
      "expert": Actor,
      "fees": AdjustmentFees,
      "flights": [AdjustmentFlight],
      "id": "abc123",
      "images": [FileMetadata],
      "indemnity": AdjustmentIndemnity,
      "labels": [AdjustmentLabel],
      "lastUpdateDate": "2007-12-03T10:15:30Z",
      "legalEntities": AdjustmentLegalEntities,
      "lossDate": "2007-12-03T10:15:30Z",
      "lossLocation": Location,
      "lossNotice": LossNotice,
      "marketReferences": [MarketReference],
      "operation": Actor,
      "owner": Actor,
      "recommendations": {},
      "reportDate": "2007-12-03T10:15:30Z",
      "reporter": Actor,
      "reportingCurrency": "xyz789",
      "reports": [AdjustmentReport],
      "stakeholderReferences": [StakeholderReference],
      "status": "abeyance",
      "statusHistory": [AdjustmentStatusChange],
      "transitions": [AdjustmentTransition],
      "unpublishedChanges": false,
      "zone": Zone
    }
  }
}

removeAdjustmentFeePayment

Description

Remove an Adjustment Fee Payment/Disbursement

Response

Returns an Adjustment!

Arguments
Name Description
data - RemoveAdjustmentFeePaymentInput!

Example

Query
mutation removeAdjustmentFeePayment($data: RemoveAdjustmentFeePaymentInput!) {
  removeAdjustmentFeePayment(data: $data) {
    actions {
      ...AdjustmentActionFragment
    }
    airframes {
      ...AdjustmentAirframeFragment
    }
    allocations {
      ...AdjustmentAllocationFragment
    }
    categories
    collaborators {
      ...ActorFragment
    }
    costsExpenses {
      ...AdjustmentCostsExpensesFragment
    }
    creationDate
    documents {
      ...FileMetadataFragment
    }
    executiveSummary
    expert {
      ...ActorFragment
    }
    fees {
      ...AdjustmentFeesFragment
    }
    flights {
      ...AdjustmentFlightFragment
    }
    id
    images {
      ...FileMetadataFragment
    }
    indemnity {
      ...AdjustmentIndemnityFragment
    }
    labels {
      ...AdjustmentLabelFragment
    }
    lastUpdateDate
    legalEntities {
      ...AdjustmentLegalEntitiesFragment
    }
    lossDate
    lossLocation {
      ...LocationFragment
    }
    lossNotice {
      ...LossNoticeFragment
    }
    marketReferences {
      ...MarketReferenceFragment
    }
    operation {
      ...ActorFragment
    }
    owner {
      ...ActorFragment
    }
    recommendations
    reportDate
    reporter {
      ...ActorFragment
    }
    reportingCurrency
    reports {
      ...AdjustmentReportFragment
    }
    stakeholderReferences {
      ...StakeholderReferenceFragment
    }
    status
    statusHistory {
      ...AdjustmentStatusChangeFragment
    }
    transitions {
      ...AdjustmentTransitionFragment
    }
    unpublishedChanges
    zone {
      ...ZoneFragment
    }
  }
}
Variables
{"data": RemoveAdjustmentFeePaymentInput}
Response
{
  "data": {
    "removeAdjustmentFeePayment": {
      "actions": [AdjustmentAction],
      "airframes": [AdjustmentAirframe],
      "allocations": [AdjustmentAllocation],
      "categories": ["aircraft_hull"],
      "collaborators": [Actor],
      "costsExpenses": AdjustmentCostsExpenses,
      "creationDate": "2007-12-03T10:15:30Z",
      "documents": [FileMetadata],
      "executiveSummary": {},
      "expert": Actor,
      "fees": AdjustmentFees,
      "flights": [AdjustmentFlight],
      "id": "xyz789",
      "images": [FileMetadata],
      "indemnity": AdjustmentIndemnity,
      "labels": [AdjustmentLabel],
      "lastUpdateDate": "2007-12-03T10:15:30Z",
      "legalEntities": AdjustmentLegalEntities,
      "lossDate": "2007-12-03T10:15:30Z",
      "lossLocation": Location,
      "lossNotice": LossNotice,
      "marketReferences": [MarketReference],
      "operation": Actor,
      "owner": Actor,
      "recommendations": {},
      "reportDate": "2007-12-03T10:15:30Z",
      "reporter": Actor,
      "reportingCurrency": "xyz789",
      "reports": [AdjustmentReport],
      "stakeholderReferences": [StakeholderReference],
      "status": "abeyance",
      "statusHistory": [AdjustmentStatusChange],
      "transitions": [AdjustmentTransition],
      "unpublishedChanges": true,
      "zone": Zone
    }
  }
}

removeAdjustmentFeeReserve

Description

Remove an Adjustment Fee Reserve

Response

Returns an Adjustment!

Arguments
Name Description
data - RemoveAdjustmentFeeReserveInput!

Example

Query
mutation removeAdjustmentFeeReserve($data: RemoveAdjustmentFeeReserveInput!) {
  removeAdjustmentFeeReserve(data: $data) {
    actions {
      ...AdjustmentActionFragment
    }
    airframes {
      ...AdjustmentAirframeFragment
    }
    allocations {
      ...AdjustmentAllocationFragment
    }
    categories
    collaborators {
      ...ActorFragment
    }
    costsExpenses {
      ...AdjustmentCostsExpensesFragment
    }
    creationDate
    documents {
      ...FileMetadataFragment
    }
    executiveSummary
    expert {
      ...ActorFragment
    }
    fees {
      ...AdjustmentFeesFragment
    }
    flights {
      ...AdjustmentFlightFragment
    }
    id
    images {
      ...FileMetadataFragment
    }
    indemnity {
      ...AdjustmentIndemnityFragment
    }
    labels {
      ...AdjustmentLabelFragment
    }
    lastUpdateDate
    legalEntities {
      ...AdjustmentLegalEntitiesFragment
    }
    lossDate
    lossLocation {
      ...LocationFragment
    }
    lossNotice {
      ...LossNoticeFragment
    }
    marketReferences {
      ...MarketReferenceFragment
    }
    operation {
      ...ActorFragment
    }
    owner {
      ...ActorFragment
    }
    recommendations
    reportDate
    reporter {
      ...ActorFragment
    }
    reportingCurrency
    reports {
      ...AdjustmentReportFragment
    }
    stakeholderReferences {
      ...StakeholderReferenceFragment
    }
    status
    statusHistory {
      ...AdjustmentStatusChangeFragment
    }
    transitions {
      ...AdjustmentTransitionFragment
    }
    unpublishedChanges
    zone {
      ...ZoneFragment
    }
  }
}
Variables
{"data": RemoveAdjustmentFeeReserveInput}
Response
{
  "data": {
    "removeAdjustmentFeeReserve": {
      "actions": [AdjustmentAction],
      "airframes": [AdjustmentAirframe],
      "allocations": [AdjustmentAllocation],
      "categories": ["aircraft_hull"],
      "collaborators": [Actor],
      "costsExpenses": AdjustmentCostsExpenses,
      "creationDate": "2007-12-03T10:15:30Z",
      "documents": [FileMetadata],
      "executiveSummary": {},
      "expert": Actor,
      "fees": AdjustmentFees,
      "flights": [AdjustmentFlight],
      "id": "xyz789",
      "images": [FileMetadata],
      "indemnity": AdjustmentIndemnity,
      "labels": [AdjustmentLabel],
      "lastUpdateDate": "2007-12-03T10:15:30Z",
      "legalEntities": AdjustmentLegalEntities,
      "lossDate": "2007-12-03T10:15:30Z",
      "lossLocation": Location,
      "lossNotice": LossNotice,
      "marketReferences": [MarketReference],
      "operation": Actor,
      "owner": Actor,
      "recommendations": {},
      "reportDate": "2007-12-03T10:15:30Z",
      "reporter": Actor,
      "reportingCurrency": "xyz789",
      "reports": [AdjustmentReport],
      "stakeholderReferences": [StakeholderReference],
      "status": "abeyance",
      "statusHistory": [AdjustmentStatusChange],
      "transitions": [AdjustmentTransition],
      "unpublishedChanges": true,
      "zone": Zone
    }
  }
}

removeAdjustmentFlight

Description

Remove a Flight from an Adjustment

Response

Returns an Adjustment!

Arguments
Name Description
data - RemoveAdjustmentFlightInput!

Example

Query
mutation removeAdjustmentFlight($data: RemoveAdjustmentFlightInput!) {
  removeAdjustmentFlight(data: $data) {
    actions {
      ...AdjustmentActionFragment
    }
    airframes {
      ...AdjustmentAirframeFragment
    }
    allocations {
      ...AdjustmentAllocationFragment
    }
    categories
    collaborators {
      ...ActorFragment
    }
    costsExpenses {
      ...AdjustmentCostsExpensesFragment
    }
    creationDate
    documents {
      ...FileMetadataFragment
    }
    executiveSummary
    expert {
      ...ActorFragment
    }
    fees {
      ...AdjustmentFeesFragment
    }
    flights {
      ...AdjustmentFlightFragment
    }
    id
    images {
      ...FileMetadataFragment
    }
    indemnity {
      ...AdjustmentIndemnityFragment
    }
    labels {
      ...AdjustmentLabelFragment
    }
    lastUpdateDate
    legalEntities {
      ...AdjustmentLegalEntitiesFragment
    }
    lossDate
    lossLocation {
      ...LocationFragment
    }
    lossNotice {
      ...LossNoticeFragment
    }
    marketReferences {
      ...MarketReferenceFragment
    }
    operation {
      ...ActorFragment
    }
    owner {
      ...ActorFragment
    }
    recommendations
    reportDate
    reporter {
      ...ActorFragment
    }
    reportingCurrency
    reports {
      ...AdjustmentReportFragment
    }
    stakeholderReferences {
      ...StakeholderReferenceFragment
    }
    status
    statusHistory {
      ...AdjustmentStatusChangeFragment
    }
    transitions {
      ...AdjustmentTransitionFragment
    }
    unpublishedChanges
    zone {
      ...ZoneFragment
    }
  }
}
Variables
{"data": RemoveAdjustmentFlightInput}
Response
{
  "data": {
    "removeAdjustmentFlight": {
      "actions": [AdjustmentAction],
      "airframes": [AdjustmentAirframe],
      "allocations": [AdjustmentAllocation],
      "categories": ["aircraft_hull"],
      "collaborators": [Actor],
      "costsExpenses": AdjustmentCostsExpenses,
      "creationDate": "2007-12-03T10:15:30Z",
      "documents": [FileMetadata],
      "executiveSummary": {},
      "expert": Actor,
      "fees": AdjustmentFees,
      "flights": [AdjustmentFlight],
      "id": "abc123",
      "images": [FileMetadata],
      "indemnity": AdjustmentIndemnity,
      "labels": [AdjustmentLabel],
      "lastUpdateDate": "2007-12-03T10:15:30Z",
      "legalEntities": AdjustmentLegalEntities,
      "lossDate": "2007-12-03T10:15:30Z",
      "lossLocation": Location,
      "lossNotice": LossNotice,
      "marketReferences": [MarketReference],
      "operation": Actor,
      "owner": Actor,
      "recommendations": {},
      "reportDate": "2007-12-03T10:15:30Z",
      "reporter": Actor,
      "reportingCurrency": "abc123",
      "reports": [AdjustmentReport],
      "stakeholderReferences": [StakeholderReference],
      "status": "abeyance",
      "statusHistory": [AdjustmentStatusChange],
      "transitions": [AdjustmentTransition],
      "unpublishedChanges": true,
      "zone": Zone
    }
  }
}

removeAdjustmentFlightDiversion

Description

Remove the Diversion from an Adjustment Flight

Response

Returns an Adjustment!

Arguments
Name Description
data - RemoveAdjustmentFlightDiversionInput!

Example

Query
mutation removeAdjustmentFlightDiversion($data: RemoveAdjustmentFlightDiversionInput!) {
  removeAdjustmentFlightDiversion(data: $data) {
    actions {
      ...AdjustmentActionFragment
    }
    airframes {
      ...AdjustmentAirframeFragment
    }
    allocations {
      ...AdjustmentAllocationFragment
    }
    categories
    collaborators {
      ...ActorFragment
    }
    costsExpenses {
      ...AdjustmentCostsExpensesFragment
    }
    creationDate
    documents {
      ...FileMetadataFragment
    }
    executiveSummary
    expert {
      ...ActorFragment
    }
    fees {
      ...AdjustmentFeesFragment
    }
    flights {
      ...AdjustmentFlightFragment
    }
    id
    images {
      ...FileMetadataFragment
    }
    indemnity {
      ...AdjustmentIndemnityFragment
    }
    labels {
      ...AdjustmentLabelFragment
    }
    lastUpdateDate
    legalEntities {
      ...AdjustmentLegalEntitiesFragment
    }
    lossDate
    lossLocation {
      ...LocationFragment
    }
    lossNotice {
      ...LossNoticeFragment
    }
    marketReferences {
      ...MarketReferenceFragment
    }
    operation {
      ...ActorFragment
    }
    owner {
      ...ActorFragment
    }
    recommendations
    reportDate
    reporter {
      ...ActorFragment
    }
    reportingCurrency
    reports {
      ...AdjustmentReportFragment
    }
    stakeholderReferences {
      ...StakeholderReferenceFragment
    }
    status
    statusHistory {
      ...AdjustmentStatusChangeFragment
    }
    transitions {
      ...AdjustmentTransitionFragment
    }
    unpublishedChanges
    zone {
      ...ZoneFragment
    }
  }
}
Variables
{"data": RemoveAdjustmentFlightDiversionInput}
Response
{
  "data": {
    "removeAdjustmentFlightDiversion": {
      "actions": [AdjustmentAction],
      "airframes": [AdjustmentAirframe],
      "allocations": [AdjustmentAllocation],
      "categories": ["aircraft_hull"],
      "collaborators": [Actor],
      "costsExpenses": AdjustmentCostsExpenses,
      "creationDate": "2007-12-03T10:15:30Z",
      "documents": [FileMetadata],
      "executiveSummary": {},
      "expert": Actor,
      "fees": AdjustmentFees,
      "flights": [AdjustmentFlight],
      "id": "xyz789",
      "images": [FileMetadata],
      "indemnity": AdjustmentIndemnity,
      "labels": [AdjustmentLabel],
      "lastUpdateDate": "2007-12-03T10:15:30Z",
      "legalEntities": AdjustmentLegalEntities,
      "lossDate": "2007-12-03T10:15:30Z",
      "lossLocation": Location,
      "lossNotice": LossNotice,
      "marketReferences": [MarketReference],
      "operation": Actor,
      "owner": Actor,
      "recommendations": {},
      "reportDate": "2007-12-03T10:15:30Z",
      "reporter": Actor,
      "reportingCurrency": "xyz789",
      "reports": [AdjustmentReport],
      "stakeholderReferences": [StakeholderReference],
      "status": "abeyance",
      "statusHistory": [AdjustmentStatusChange],
      "transitions": [AdjustmentTransition],
      "unpublishedChanges": true,
      "zone": Zone
    }
  }
}

removeAdjustmentImages

Response

Returns an Adjustment!

Arguments
Name Description
data - RemoveAdjustmentImagesInput!

Example

Query
mutation removeAdjustmentImages($data: RemoveAdjustmentImagesInput!) {
  removeAdjustmentImages(data: $data) {
    actions {
      ...AdjustmentActionFragment
    }
    airframes {
      ...AdjustmentAirframeFragment
    }
    allocations {
      ...AdjustmentAllocationFragment
    }
    categories
    collaborators {
      ...ActorFragment
    }
    costsExpenses {
      ...AdjustmentCostsExpensesFragment
    }
    creationDate
    documents {
      ...FileMetadataFragment
    }
    executiveSummary
    expert {
      ...ActorFragment
    }
    fees {
      ...AdjustmentFeesFragment
    }
    flights {
      ...AdjustmentFlightFragment
    }
    id
    images {
      ...FileMetadataFragment
    }
    indemnity {
      ...AdjustmentIndemnityFragment
    }
    labels {
      ...AdjustmentLabelFragment
    }
    lastUpdateDate
    legalEntities {
      ...AdjustmentLegalEntitiesFragment
    }
    lossDate
    lossLocation {
      ...LocationFragment
    }
    lossNotice {
      ...LossNoticeFragment
    }
    marketReferences {
      ...MarketReferenceFragment
    }
    operation {
      ...ActorFragment
    }
    owner {
      ...ActorFragment
    }
    recommendations
    reportDate
    reporter {
      ...ActorFragment
    }
    reportingCurrency
    reports {
      ...AdjustmentReportFragment
    }
    stakeholderReferences {
      ...StakeholderReferenceFragment
    }
    status
    statusHistory {
      ...AdjustmentStatusChangeFragment
    }
    transitions {
      ...AdjustmentTransitionFragment
    }
    unpublishedChanges
    zone {
      ...ZoneFragment
    }
  }
}
Variables
{"data": RemoveAdjustmentImagesInput}
Response
{
  "data": {
    "removeAdjustmentImages": {
      "actions": [AdjustmentAction],
      "airframes": [AdjustmentAirframe],
      "allocations": [AdjustmentAllocation],
      "categories": ["aircraft_hull"],
      "collaborators": [Actor],
      "costsExpenses": AdjustmentCostsExpenses,
      "creationDate": "2007-12-03T10:15:30Z",
      "documents": [FileMetadata],
      "executiveSummary": {},
      "expert": Actor,
      "fees": AdjustmentFees,
      "flights": [AdjustmentFlight],
      "id": "abc123",
      "images": [FileMetadata],
      "indemnity": AdjustmentIndemnity,
      "labels": [AdjustmentLabel],
      "lastUpdateDate": "2007-12-03T10:15:30Z",
      "legalEntities": AdjustmentLegalEntities,
      "lossDate": "2007-12-03T10:15:30Z",
      "lossLocation": Location,
      "lossNotice": LossNotice,
      "marketReferences": [MarketReference],
      "operation": Actor,
      "owner": Actor,
      "recommendations": {},
      "reportDate": "2007-12-03T10:15:30Z",
      "reporter": Actor,
      "reportingCurrency": "abc123",
      "reports": [AdjustmentReport],
      "stakeholderReferences": [StakeholderReference],
      "status": "abeyance",
      "statusHistory": [AdjustmentStatusChange],
      "transitions": [AdjustmentTransition],
      "unpublishedChanges": false,
      "zone": Zone
    }
  }
}

removeAdjustmentIndemnityPayment

Description

Remove an Adjustment Indemnity Payment/Disbursement

Response

Returns an Adjustment!

Arguments
Name Description
data - RemoveAdjustmentIndemnityPaymentInput!

Example

Query
mutation removeAdjustmentIndemnityPayment($data: RemoveAdjustmentIndemnityPaymentInput!) {
  removeAdjustmentIndemnityPayment(data: $data) {
    actions {
      ...AdjustmentActionFragment
    }
    airframes {
      ...AdjustmentAirframeFragment
    }
    allocations {
      ...AdjustmentAllocationFragment
    }
    categories
    collaborators {
      ...ActorFragment
    }
    costsExpenses {
      ...AdjustmentCostsExpensesFragment
    }
    creationDate
    documents {
      ...FileMetadataFragment
    }
    executiveSummary
    expert {
      ...ActorFragment
    }
    fees {
      ...AdjustmentFeesFragment
    }
    flights {
      ...AdjustmentFlightFragment
    }
    id
    images {
      ...FileMetadataFragment
    }
    indemnity {
      ...AdjustmentIndemnityFragment
    }
    labels {
      ...AdjustmentLabelFragment
    }
    lastUpdateDate
    legalEntities {
      ...AdjustmentLegalEntitiesFragment
    }
    lossDate
    lossLocation {
      ...LocationFragment
    }
    lossNotice {
      ...LossNoticeFragment
    }
    marketReferences {
      ...MarketReferenceFragment
    }
    operation {
      ...ActorFragment
    }
    owner {
      ...ActorFragment
    }
    recommendations
    reportDate
    reporter {
      ...ActorFragment
    }
    reportingCurrency
    reports {
      ...AdjustmentReportFragment
    }
    stakeholderReferences {
      ...StakeholderReferenceFragment
    }
    status
    statusHistory {
      ...AdjustmentStatusChangeFragment
    }
    transitions {
      ...AdjustmentTransitionFragment
    }
    unpublishedChanges
    zone {
      ...ZoneFragment
    }
  }
}
Variables
{"data": RemoveAdjustmentIndemnityPaymentInput}
Response
{
  "data": {
    "removeAdjustmentIndemnityPayment": {
      "actions": [AdjustmentAction],
      "airframes": [AdjustmentAirframe],
      "allocations": [AdjustmentAllocation],
      "categories": ["aircraft_hull"],
      "collaborators": [Actor],
      "costsExpenses": AdjustmentCostsExpenses,
      "creationDate": "2007-12-03T10:15:30Z",
      "documents": [FileMetadata],
      "executiveSummary": {},
      "expert": Actor,
      "fees": AdjustmentFees,
      "flights": [AdjustmentFlight],
      "id": "xyz789",
      "images": [FileMetadata],
      "indemnity": AdjustmentIndemnity,
      "labels": [AdjustmentLabel],
      "lastUpdateDate": "2007-12-03T10:15:30Z",
      "legalEntities": AdjustmentLegalEntities,
      "lossDate": "2007-12-03T10:15:30Z",
      "lossLocation": Location,
      "lossNotice": LossNotice,
      "marketReferences": [MarketReference],
      "operation": Actor,
      "owner": Actor,
      "recommendations": {},
      "reportDate": "2007-12-03T10:15:30Z",
      "reporter": Actor,
      "reportingCurrency": "xyz789",
      "reports": [AdjustmentReport],
      "stakeholderReferences": [StakeholderReference],
      "status": "abeyance",
      "statusHistory": [AdjustmentStatusChange],
      "transitions": [AdjustmentTransition],
      "unpublishedChanges": false,
      "zone": Zone
    }
  }
}

removeAdjustmentIndemnityReserve

Description

Remove an Adjustment Indemnity Reserve

Response

Returns an Adjustment!

Arguments
Name Description
data - RemoveAdjustmentIndemnityReserveInput!

Example

Query
mutation removeAdjustmentIndemnityReserve($data: RemoveAdjustmentIndemnityReserveInput!) {
  removeAdjustmentIndemnityReserve(data: $data) {
    actions {
      ...AdjustmentActionFragment
    }
    airframes {
      ...AdjustmentAirframeFragment
    }
    allocations {
      ...AdjustmentAllocationFragment
    }
    categories
    collaborators {
      ...ActorFragment
    }
    costsExpenses {
      ...AdjustmentCostsExpensesFragment
    }
    creationDate
    documents {
      ...FileMetadataFragment
    }
    executiveSummary
    expert {
      ...ActorFragment
    }
    fees {
      ...AdjustmentFeesFragment
    }
    flights {
      ...AdjustmentFlightFragment
    }
    id
    images {
      ...FileMetadataFragment
    }
    indemnity {
      ...AdjustmentIndemnityFragment
    }
    labels {
      ...AdjustmentLabelFragment
    }
    lastUpdateDate
    legalEntities {
      ...AdjustmentLegalEntitiesFragment
    }
    lossDate
    lossLocation {
      ...LocationFragment
    }
    lossNotice {
      ...LossNoticeFragment
    }
    marketReferences {
      ...MarketReferenceFragment
    }
    operation {
      ...ActorFragment
    }
    owner {
      ...ActorFragment
    }
    recommendations
    reportDate
    reporter {
      ...ActorFragment
    }
    reportingCurrency
    reports {
      ...AdjustmentReportFragment
    }
    stakeholderReferences {
      ...StakeholderReferenceFragment
    }
    status
    statusHistory {
      ...AdjustmentStatusChangeFragment
    }
    transitions {
      ...AdjustmentTransitionFragment
    }
    unpublishedChanges
    zone {
      ...ZoneFragment
    }
  }
}
Variables
{"data": RemoveAdjustmentIndemnityReserveInput}
Response
{
  "data": {
    "removeAdjustmentIndemnityReserve": {
      "actions": [AdjustmentAction],
      "airframes": [AdjustmentAirframe],
      "allocations": [AdjustmentAllocation],
      "categories": ["aircraft_hull"],
      "collaborators": [Actor],
      "costsExpenses": AdjustmentCostsExpenses,
      "creationDate": "2007-12-03T10:15:30Z",
      "documents": [FileMetadata],
      "executiveSummary": {},
      "expert": Actor,
      "fees": AdjustmentFees,
      "flights": [AdjustmentFlight],
      "id": "xyz789",
      "images": [FileMetadata],
      "indemnity": AdjustmentIndemnity,
      "labels": [AdjustmentLabel],
      "lastUpdateDate": "2007-12-03T10:15:30Z",
      "legalEntities": AdjustmentLegalEntities,
      "lossDate": "2007-12-03T10:15:30Z",
      "lossLocation": Location,
      "lossNotice": LossNotice,
      "marketReferences": [MarketReference],
      "operation": Actor,
      "owner": Actor,
      "recommendations": {},
      "reportDate": "2007-12-03T10:15:30Z",
      "reporter": Actor,
      "reportingCurrency": "xyz789",
      "reports": [AdjustmentReport],
      "stakeholderReferences": [StakeholderReference],
      "status": "abeyance",
      "statusHistory": [AdjustmentStatusChange],
      "transitions": [AdjustmentTransition],
      "unpublishedChanges": false,
      "zone": Zone
    }
  }
}

removeAdjustmentIndividual

Description

Remove an Individual from an Adjustment

Response

Returns an Adjustment!

Arguments
Name Description
data - RemoveAdjustmentIndividualInput!

Example

Query
mutation removeAdjustmentIndividual($data: RemoveAdjustmentIndividualInput!) {
  removeAdjustmentIndividual(data: $data) {
    actions {
      ...AdjustmentActionFragment
    }
    airframes {
      ...AdjustmentAirframeFragment
    }
    allocations {
      ...AdjustmentAllocationFragment
    }
    categories
    collaborators {
      ...ActorFragment
    }
    costsExpenses {
      ...AdjustmentCostsExpensesFragment
    }
    creationDate
    documents {
      ...FileMetadataFragment
    }
    executiveSummary
    expert {
      ...ActorFragment
    }
    fees {
      ...AdjustmentFeesFragment
    }
    flights {
      ...AdjustmentFlightFragment
    }
    id
    images {
      ...FileMetadataFragment
    }
    indemnity {
      ...AdjustmentIndemnityFragment
    }
    labels {
      ...AdjustmentLabelFragment
    }
    lastUpdateDate
    legalEntities {
      ...AdjustmentLegalEntitiesFragment
    }
    lossDate
    lossLocation {
      ...LocationFragment
    }
    lossNotice {
      ...LossNoticeFragment
    }
    marketReferences {
      ...MarketReferenceFragment
    }
    operation {
      ...ActorFragment
    }
    owner {
      ...ActorFragment
    }
    recommendations
    reportDate
    reporter {
      ...ActorFragment
    }
    reportingCurrency
    reports {
      ...AdjustmentReportFragment
    }
    stakeholderReferences {
      ...StakeholderReferenceFragment
    }
    status
    statusHistory {
      ...AdjustmentStatusChangeFragment
    }
    transitions {
      ...AdjustmentTransitionFragment
    }
    unpublishedChanges
    zone {
      ...ZoneFragment
    }
  }
}
Variables
{"data": RemoveAdjustmentIndividualInput}
Response
{
  "data": {
    "removeAdjustmentIndividual": {
      "actions": [AdjustmentAction],
      "airframes": [AdjustmentAirframe],
      "allocations": [AdjustmentAllocation],
      "categories": ["aircraft_hull"],
      "collaborators": [Actor],
      "costsExpenses": AdjustmentCostsExpenses,
      "creationDate": "2007-12-03T10:15:30Z",
      "documents": [FileMetadata],
      "executiveSummary": {},
      "expert": Actor,
      "fees": AdjustmentFees,
      "flights": [AdjustmentFlight],
      "id": "abc123",
      "images": [FileMetadata],
      "indemnity": AdjustmentIndemnity,
      "labels": [AdjustmentLabel],
      "lastUpdateDate": "2007-12-03T10:15:30Z",
      "legalEntities": AdjustmentLegalEntities,
      "lossDate": "2007-12-03T10:15:30Z",
      "lossLocation": Location,
      "lossNotice": LossNotice,
      "marketReferences": [MarketReference],
      "operation": Actor,
      "owner": Actor,
      "recommendations": {},
      "reportDate": "2007-12-03T10:15:30Z",
      "reporter": Actor,
      "reportingCurrency": "abc123",
      "reports": [AdjustmentReport],
      "stakeholderReferences": [StakeholderReference],
      "status": "abeyance",
      "statusHistory": [AdjustmentStatusChange],
      "transitions": [AdjustmentTransition],
      "unpublishedChanges": false,
      "zone": Zone
    }
  }
}

removeAdjustmentMarketReference

Response

Returns an Adjustment!

Arguments
Name Description
data - RemoveMarketReferenceInput!

Example

Query
mutation removeAdjustmentMarketReference($data: RemoveMarketReferenceInput!) {
  removeAdjustmentMarketReference(data: $data) {
    actions {
      ...AdjustmentActionFragment
    }
    airframes {
      ...AdjustmentAirframeFragment
    }
    allocations {
      ...AdjustmentAllocationFragment
    }
    categories
    collaborators {
      ...ActorFragment
    }
    costsExpenses {
      ...AdjustmentCostsExpensesFragment
    }
    creationDate
    documents {
      ...FileMetadataFragment
    }
    executiveSummary
    expert {
      ...ActorFragment
    }
    fees {
      ...AdjustmentFeesFragment
    }
    flights {
      ...AdjustmentFlightFragment
    }
    id
    images {
      ...FileMetadataFragment
    }
    indemnity {
      ...AdjustmentIndemnityFragment
    }
    labels {
      ...AdjustmentLabelFragment
    }
    lastUpdateDate
    legalEntities {
      ...AdjustmentLegalEntitiesFragment
    }
    lossDate
    lossLocation {
      ...LocationFragment
    }
    lossNotice {
      ...LossNoticeFragment
    }
    marketReferences {
      ...MarketReferenceFragment
    }
    operation {
      ...ActorFragment
    }
    owner {
      ...ActorFragment
    }
    recommendations
    reportDate
    reporter {
      ...ActorFragment
    }
    reportingCurrency
    reports {
      ...AdjustmentReportFragment
    }
    stakeholderReferences {
      ...StakeholderReferenceFragment
    }
    status
    statusHistory {
      ...AdjustmentStatusChangeFragment
    }
    transitions {
      ...AdjustmentTransitionFragment
    }
    unpublishedChanges
    zone {
      ...ZoneFragment
    }
  }
}
Variables
{"data": RemoveMarketReferenceInput}
Response
{
  "data": {
    "removeAdjustmentMarketReference": {
      "actions": [AdjustmentAction],
      "airframes": [AdjustmentAirframe],
      "allocations": [AdjustmentAllocation],
      "categories": ["aircraft_hull"],
      "collaborators": [Actor],
      "costsExpenses": AdjustmentCostsExpenses,
      "creationDate": "2007-12-03T10:15:30Z",
      "documents": [FileMetadata],
      "executiveSummary": {},
      "expert": Actor,
      "fees": AdjustmentFees,
      "flights": [AdjustmentFlight],
      "id": "abc123",
      "images": [FileMetadata],
      "indemnity": AdjustmentIndemnity,
      "labels": [AdjustmentLabel],
      "lastUpdateDate": "2007-12-03T10:15:30Z",
      "legalEntities": AdjustmentLegalEntities,
      "lossDate": "2007-12-03T10:15:30Z",
      "lossLocation": Location,
      "lossNotice": LossNotice,
      "marketReferences": [MarketReference],
      "operation": Actor,
      "owner": Actor,
      "recommendations": {},
      "reportDate": "2007-12-03T10:15:30Z",
      "reporter": Actor,
      "reportingCurrency": "abc123",
      "reports": [AdjustmentReport],
      "stakeholderReferences": [StakeholderReference],
      "status": "abeyance",
      "statusHistory": [AdjustmentStatusChange],
      "transitions": [AdjustmentTransition],
      "unpublishedChanges": false,
      "zone": Zone
    }
  }
}

removeAdjustmentPolicy

Description

Remove a Policy assigned to the Adjustment

Response

Returns an Adjustment!

Arguments
Name Description
data - RemoveAdjustmentPolicyInput!

Example

Query
mutation removeAdjustmentPolicy($data: RemoveAdjustmentPolicyInput!) {
  removeAdjustmentPolicy(data: $data) {
    actions {
      ...AdjustmentActionFragment
    }
    airframes {
      ...AdjustmentAirframeFragment
    }
    allocations {
      ...AdjustmentAllocationFragment
    }
    categories
    collaborators {
      ...ActorFragment
    }
    costsExpenses {
      ...AdjustmentCostsExpensesFragment
    }
    creationDate
    documents {
      ...FileMetadataFragment
    }
    executiveSummary
    expert {
      ...ActorFragment
    }
    fees {
      ...AdjustmentFeesFragment
    }
    flights {
      ...AdjustmentFlightFragment
    }
    id
    images {
      ...FileMetadataFragment
    }
    indemnity {
      ...AdjustmentIndemnityFragment
    }
    labels {
      ...AdjustmentLabelFragment
    }
    lastUpdateDate
    legalEntities {
      ...AdjustmentLegalEntitiesFragment
    }
    lossDate
    lossLocation {
      ...LocationFragment
    }
    lossNotice {
      ...LossNoticeFragment
    }
    marketReferences {
      ...MarketReferenceFragment
    }
    operation {
      ...ActorFragment
    }
    owner {
      ...ActorFragment
    }
    recommendations
    reportDate
    reporter {
      ...ActorFragment
    }
    reportingCurrency
    reports {
      ...AdjustmentReportFragment
    }
    stakeholderReferences {
      ...StakeholderReferenceFragment
    }
    status
    statusHistory {
      ...AdjustmentStatusChangeFragment
    }
    transitions {
      ...AdjustmentTransitionFragment
    }
    unpublishedChanges
    zone {
      ...ZoneFragment
    }
  }
}
Variables
{"data": RemoveAdjustmentPolicyInput}
Response
{
  "data": {
    "removeAdjustmentPolicy": {
      "actions": [AdjustmentAction],
      "airframes": [AdjustmentAirframe],
      "allocations": [AdjustmentAllocation],
      "categories": ["aircraft_hull"],
      "collaborators": [Actor],
      "costsExpenses": AdjustmentCostsExpenses,
      "creationDate": "2007-12-03T10:15:30Z",
      "documents": [FileMetadata],
      "executiveSummary": {},
      "expert": Actor,
      "fees": AdjustmentFees,
      "flights": [AdjustmentFlight],
      "id": "abc123",
      "images": [FileMetadata],
      "indemnity": AdjustmentIndemnity,
      "labels": [AdjustmentLabel],
      "lastUpdateDate": "2007-12-03T10:15:30Z",
      "legalEntities": AdjustmentLegalEntities,
      "lossDate": "2007-12-03T10:15:30Z",
      "lossLocation": Location,
      "lossNotice": LossNotice,
      "marketReferences": [MarketReference],
      "operation": Actor,
      "owner": Actor,
      "recommendations": {},
      "reportDate": "2007-12-03T10:15:30Z",
      "reporter": Actor,
      "reportingCurrency": "xyz789",
      "reports": [AdjustmentReport],
      "stakeholderReferences": [StakeholderReference],
      "status": "abeyance",
      "statusHistory": [AdjustmentStatusChange],
      "transitions": [AdjustmentTransition],
      "unpublishedChanges": true,
      "zone": Zone
    }
  }
}

removeAdjustmentStakeholderReference

Description

Remove a Stakeholder Reference from an Adjustment

Response

Returns an Adjustment!

Arguments
Name Description
data - RemoveStakeholderReferenceInput!

Example

Query
mutation removeAdjustmentStakeholderReference($data: RemoveStakeholderReferenceInput!) {
  removeAdjustmentStakeholderReference(data: $data) {
    actions {
      ...AdjustmentActionFragment
    }
    airframes {
      ...AdjustmentAirframeFragment
    }
    allocations {
      ...AdjustmentAllocationFragment
    }
    categories
    collaborators {
      ...ActorFragment
    }
    costsExpenses {
      ...AdjustmentCostsExpensesFragment
    }
    creationDate
    documents {
      ...FileMetadataFragment
    }
    executiveSummary
    expert {
      ...ActorFragment
    }
    fees {
      ...AdjustmentFeesFragment
    }
    flights {
      ...AdjustmentFlightFragment
    }
    id
    images {
      ...FileMetadataFragment
    }
    indemnity {
      ...AdjustmentIndemnityFragment
    }
    labels {
      ...AdjustmentLabelFragment
    }
    lastUpdateDate
    legalEntities {
      ...AdjustmentLegalEntitiesFragment
    }
    lossDate
    lossLocation {
      ...LocationFragment
    }
    lossNotice {
      ...LossNoticeFragment
    }
    marketReferences {
      ...MarketReferenceFragment
    }
    operation {
      ...ActorFragment
    }
    owner {
      ...ActorFragment
    }
    recommendations
    reportDate
    reporter {
      ...ActorFragment
    }
    reportingCurrency
    reports {
      ...AdjustmentReportFragment
    }
    stakeholderReferences {
      ...StakeholderReferenceFragment
    }
    status
    statusHistory {
      ...AdjustmentStatusChangeFragment
    }
    transitions {
      ...AdjustmentTransitionFragment
    }
    unpublishedChanges
    zone {
      ...ZoneFragment
    }
  }
}
Variables
{"data": RemoveStakeholderReferenceInput}
Response
{
  "data": {
    "removeAdjustmentStakeholderReference": {
      "actions": [AdjustmentAction],
      "airframes": [AdjustmentAirframe],
      "allocations": [AdjustmentAllocation],
      "categories": ["aircraft_hull"],
      "collaborators": [Actor],
      "costsExpenses": AdjustmentCostsExpenses,
      "creationDate": "2007-12-03T10:15:30Z",
      "documents": [FileMetadata],
      "executiveSummary": {},
      "expert": Actor,
      "fees": AdjustmentFees,
      "flights": [AdjustmentFlight],
      "id": "abc123",
      "images": [FileMetadata],
      "indemnity": AdjustmentIndemnity,
      "labels": [AdjustmentLabel],
      "lastUpdateDate": "2007-12-03T10:15:30Z",
      "legalEntities": AdjustmentLegalEntities,
      "lossDate": "2007-12-03T10:15:30Z",
      "lossLocation": Location,
      "lossNotice": LossNotice,
      "marketReferences": [MarketReference],
      "operation": Actor,
      "owner": Actor,
      "recommendations": {},
      "reportDate": "2007-12-03T10:15:30Z",
      "reporter": Actor,
      "reportingCurrency": "xyz789",
      "reports": [AdjustmentReport],
      "stakeholderReferences": [StakeholderReference],
      "status": "abeyance",
      "statusHistory": [AdjustmentStatusChange],
      "transitions": [AdjustmentTransition],
      "unpublishedChanges": true,
      "zone": Zone
    }
  }
}

removeLossNoticeAirframe

Response

Returns a LossNotice!

Arguments
Name Description
data - RemoveLossNoticeAirframeInput!

Example

Query
mutation removeLossNoticeAirframe($data: RemoveLossNoticeAirframeInput!) {
  removeLossNoticeAirframe(data: $data) {
    actions
    airframes {
      ...LossNoticeAirframeFragment
    }
    categories
    creationDate
    documents {
      ...FileMetadataFragment
    }
    flights {
      ...LossNoticeFlightFragment
    }
    id
    images {
      ...FileMetadataFragment
    }
    labels {
      ...LossNoticeLabelFragment
    }
    lastUpdateDate
    lossDate
    lossLocation {
      ...LocationFragment
    }
    narrative
    operation {
      ...ActorFragment
    }
    reportDate
    reporter {
      ...ActorFragment
    }
    status
    zone {
      ...ZoneFragment
    }
  }
}
Variables
{"data": RemoveLossNoticeAirframeInput}
Response
{
  "data": {
    "removeLossNoticeAirframe": {
      "actions": ["create"],
      "airframes": [LossNoticeAirframe],
      "categories": ["aircraft_hull"],
      "creationDate": "2007-12-03T10:15:30Z",
      "documents": [FileMetadata],
      "flights": [LossNoticeFlight],
      "id": "xyz789",
      "images": [FileMetadata],
      "labels": [LossNoticeLabel],
      "lastUpdateDate": "2007-12-03T10:15:30Z",
      "lossDate": "2007-12-03T10:15:30Z",
      "lossLocation": Location,
      "narrative": {},
      "operation": Actor,
      "reportDate": "2007-12-03T10:15:30Z",
      "reporter": Actor,
      "status": "draft",
      "zone": Zone
    }
  }
}

removeLossNoticeAirframeEngine

Response

Returns a LossNotice!

Arguments
Name Description
data - RemoveLossNoticeAirframeEngineInput!

Example

Query
mutation removeLossNoticeAirframeEngine($data: RemoveLossNoticeAirframeEngineInput!) {
  removeLossNoticeAirframeEngine(data: $data) {
    actions
    airframes {
      ...LossNoticeAirframeFragment
    }
    categories
    creationDate
    documents {
      ...FileMetadataFragment
    }
    flights {
      ...LossNoticeFlightFragment
    }
    id
    images {
      ...FileMetadataFragment
    }
    labels {
      ...LossNoticeLabelFragment
    }
    lastUpdateDate
    lossDate
    lossLocation {
      ...LocationFragment
    }
    narrative
    operation {
      ...ActorFragment
    }
    reportDate
    reporter {
      ...ActorFragment
    }
    status
    zone {
      ...ZoneFragment
    }
  }
}
Variables
{"data": RemoveLossNoticeAirframeEngineInput}
Response
{
  "data": {
    "removeLossNoticeAirframeEngine": {
      "actions": ["create"],
      "airframes": [LossNoticeAirframe],
      "categories": ["aircraft_hull"],
      "creationDate": "2007-12-03T10:15:30Z",
      "documents": [FileMetadata],
      "flights": [LossNoticeFlight],
      "id": "abc123",
      "images": [FileMetadata],
      "labels": [LossNoticeLabel],
      "lastUpdateDate": "2007-12-03T10:15:30Z",
      "lossDate": "2007-12-03T10:15:30Z",
      "lossLocation": Location,
      "narrative": {},
      "operation": Actor,
      "reportDate": "2007-12-03T10:15:30Z",
      "reporter": Actor,
      "status": "draft",
      "zone": Zone
    }
  }
}

removeLossNoticeAirframeEngineDamage

Response

Returns a LossNotice!

Arguments
Name Description
data - RemoveLossNoticeAirframeEngineDamageInput!

Example

Query
mutation removeLossNoticeAirframeEngineDamage($data: RemoveLossNoticeAirframeEngineDamageInput!) {
  removeLossNoticeAirframeEngineDamage(data: $data) {
    actions
    airframes {
      ...LossNoticeAirframeFragment
    }
    categories
    creationDate
    documents {
      ...FileMetadataFragment
    }
    flights {
      ...LossNoticeFlightFragment
    }
    id
    images {
      ...FileMetadataFragment
    }
    labels {
      ...LossNoticeLabelFragment
    }
    lastUpdateDate
    lossDate
    lossLocation {
      ...LocationFragment
    }
    narrative
    operation {
      ...ActorFragment
    }
    reportDate
    reporter {
      ...ActorFragment
    }
    status
    zone {
      ...ZoneFragment
    }
  }
}
Variables
{"data": RemoveLossNoticeAirframeEngineDamageInput}
Response
{
  "data": {
    "removeLossNoticeAirframeEngineDamage": {
      "actions": ["create"],
      "airframes": [LossNoticeAirframe],
      "categories": ["aircraft_hull"],
      "creationDate": "2007-12-03T10:15:30Z",
      "documents": [FileMetadata],
      "flights": [LossNoticeFlight],
      "id": "xyz789",
      "images": [FileMetadata],
      "labels": [LossNoticeLabel],
      "lastUpdateDate": "2007-12-03T10:15:30Z",
      "lossDate": "2007-12-03T10:15:30Z",
      "lossLocation": Location,
      "narrative": {},
      "operation": Actor,
      "reportDate": "2007-12-03T10:15:30Z",
      "reporter": Actor,
      "status": "draft",
      "zone": Zone
    }
  }
}

removeLossNoticeAirframePartDamage

Response

Returns a LossNotice!

Arguments
Name Description
data - RemoveLossNoticeAirframePartDamageInput!

Example

Query
mutation removeLossNoticeAirframePartDamage($data: RemoveLossNoticeAirframePartDamageInput!) {
  removeLossNoticeAirframePartDamage(data: $data) {
    actions
    airframes {
      ...LossNoticeAirframeFragment
    }
    categories
    creationDate
    documents {
      ...FileMetadataFragment
    }
    flights {
      ...LossNoticeFlightFragment
    }
    id
    images {
      ...FileMetadataFragment
    }
    labels {
      ...LossNoticeLabelFragment
    }
    lastUpdateDate
    lossDate
    lossLocation {
      ...LocationFragment
    }
    narrative
    operation {
      ...ActorFragment
    }
    reportDate
    reporter {
      ...ActorFragment
    }
    status
    zone {
      ...ZoneFragment
    }
  }
}
Variables
{"data": RemoveLossNoticeAirframePartDamageInput}
Response
{
  "data": {
    "removeLossNoticeAirframePartDamage": {
      "actions": ["create"],
      "airframes": [LossNoticeAirframe],
      "categories": ["aircraft_hull"],
      "creationDate": "2007-12-03T10:15:30Z",
      "documents": [FileMetadata],
      "flights": [LossNoticeFlight],
      "id": "xyz789",
      "images": [FileMetadata],
      "labels": [LossNoticeLabel],
      "lastUpdateDate": "2007-12-03T10:15:30Z",
      "lossDate": "2007-12-03T10:15:30Z",
      "lossLocation": Location,
      "narrative": {},
      "operation": Actor,
      "reportDate": "2007-12-03T10:15:30Z",
      "reporter": Actor,
      "status": "draft",
      "zone": Zone
    }
  }
}

removeLossNoticeCustomLabel

Response

Returns a LossNotice!

Arguments
Name Description
data - RemoveLossNoticeLabelInput!

Example

Query
mutation removeLossNoticeCustomLabel($data: RemoveLossNoticeLabelInput!) {
  removeLossNoticeCustomLabel(data: $data) {
    actions
    airframes {
      ...LossNoticeAirframeFragment
    }
    categories
    creationDate
    documents {
      ...FileMetadataFragment
    }
    flights {
      ...LossNoticeFlightFragment
    }
    id
    images {
      ...FileMetadataFragment
    }
    labels {
      ...LossNoticeLabelFragment
    }
    lastUpdateDate
    lossDate
    lossLocation {
      ...LocationFragment
    }
    narrative
    operation {
      ...ActorFragment
    }
    reportDate
    reporter {
      ...ActorFragment
    }
    status
    zone {
      ...ZoneFragment
    }
  }
}
Variables
{"data": RemoveLossNoticeLabelInput}
Response
{
  "data": {
    "removeLossNoticeCustomLabel": {
      "actions": ["create"],
      "airframes": [LossNoticeAirframe],
      "categories": ["aircraft_hull"],
      "creationDate": "2007-12-03T10:15:30Z",
      "documents": [FileMetadata],
      "flights": [LossNoticeFlight],
      "id": "xyz789",
      "images": [FileMetadata],
      "labels": [LossNoticeLabel],
      "lastUpdateDate": "2007-12-03T10:15:30Z",
      "lossDate": "2007-12-03T10:15:30Z",
      "lossLocation": Location,
      "narrative": {},
      "operation": Actor,
      "reportDate": "2007-12-03T10:15:30Z",
      "reporter": Actor,
      "status": "draft",
      "zone": Zone
    }
  }
}

removeLossNoticeDocuments

Response

Returns a LossNotice!

Arguments
Name Description
data - RemoveLossNoticeDocumentsInput!

Example

Query
mutation removeLossNoticeDocuments($data: RemoveLossNoticeDocumentsInput!) {
  removeLossNoticeDocuments(data: $data) {
    actions
    airframes {
      ...LossNoticeAirframeFragment
    }
    categories
    creationDate
    documents {
      ...FileMetadataFragment
    }
    flights {
      ...LossNoticeFlightFragment
    }
    id
    images {
      ...FileMetadataFragment
    }
    labels {
      ...LossNoticeLabelFragment
    }
    lastUpdateDate
    lossDate
    lossLocation {
      ...LocationFragment
    }
    narrative
    operation {
      ...ActorFragment
    }
    reportDate
    reporter {
      ...ActorFragment
    }
    status
    zone {
      ...ZoneFragment
    }
  }
}
Variables
{"data": RemoveLossNoticeDocumentsInput}
Response
{
  "data": {
    "removeLossNoticeDocuments": {
      "actions": ["create"],
      "airframes": [LossNoticeAirframe],
      "categories": ["aircraft_hull"],
      "creationDate": "2007-12-03T10:15:30Z",
      "documents": [FileMetadata],
      "flights": [LossNoticeFlight],
      "id": "abc123",
      "images": [FileMetadata],
      "labels": [LossNoticeLabel],
      "lastUpdateDate": "2007-12-03T10:15:30Z",
      "lossDate": "2007-12-03T10:15:30Z",
      "lossLocation": Location,
      "narrative": {},
      "operation": Actor,
      "reportDate": "2007-12-03T10:15:30Z",
      "reporter": Actor,
      "status": "draft",
      "zone": Zone
    }
  }
}

removeLossNoticeFlight

Response

Returns a LossNotice!

Arguments
Name Description
data - RemoveLossNoticeFlightInput!

Example

Query
mutation removeLossNoticeFlight($data: RemoveLossNoticeFlightInput!) {
  removeLossNoticeFlight(data: $data) {
    actions
    airframes {
      ...LossNoticeAirframeFragment
    }
    categories
    creationDate
    documents {
      ...FileMetadataFragment
    }
    flights {
      ...LossNoticeFlightFragment
    }
    id
    images {
      ...FileMetadataFragment
    }
    labels {
      ...LossNoticeLabelFragment
    }
    lastUpdateDate
    lossDate
    lossLocation {
      ...LocationFragment
    }
    narrative
    operation {
      ...ActorFragment
    }
    reportDate
    reporter {
      ...ActorFragment
    }
    status
    zone {
      ...ZoneFragment
    }
  }
}
Variables
{"data": RemoveLossNoticeFlightInput}
Response
{
  "data": {
    "removeLossNoticeFlight": {
      "actions": ["create"],
      "airframes": [LossNoticeAirframe],
      "categories": ["aircraft_hull"],
      "creationDate": "2007-12-03T10:15:30Z",
      "documents": [FileMetadata],
      "flights": [LossNoticeFlight],
      "id": "xyz789",
      "images": [FileMetadata],
      "labels": [LossNoticeLabel],
      "lastUpdateDate": "2007-12-03T10:15:30Z",
      "lossDate": "2007-12-03T10:15:30Z",
      "lossLocation": Location,
      "narrative": {},
      "operation": Actor,
      "reportDate": "2007-12-03T10:15:30Z",
      "reporter": Actor,
      "status": "draft",
      "zone": Zone
    }
  }
}

removeLossNoticeFlightDiversion

Response

Returns a LossNotice!

Arguments
Name Description
data - RemoveLossNoticeFlightDiversionInput!

Example

Query
mutation removeLossNoticeFlightDiversion($data: RemoveLossNoticeFlightDiversionInput!) {
  removeLossNoticeFlightDiversion(data: $data) {
    actions
    airframes {
      ...LossNoticeAirframeFragment
    }
    categories
    creationDate
    documents {
      ...FileMetadataFragment
    }
    flights {
      ...LossNoticeFlightFragment
    }
    id
    images {
      ...FileMetadataFragment
    }
    labels {
      ...LossNoticeLabelFragment
    }
    lastUpdateDate
    lossDate
    lossLocation {
      ...LocationFragment
    }
    narrative
    operation {
      ...ActorFragment
    }
    reportDate
    reporter {
      ...ActorFragment
    }
    status
    zone {
      ...ZoneFragment
    }
  }
}
Variables
{"data": RemoveLossNoticeFlightDiversionInput}
Response
{
  "data": {
    "removeLossNoticeFlightDiversion": {
      "actions": ["create"],
      "airframes": [LossNoticeAirframe],
      "categories": ["aircraft_hull"],
      "creationDate": "2007-12-03T10:15:30Z",
      "documents": [FileMetadata],
      "flights": [LossNoticeFlight],
      "id": "xyz789",
      "images": [FileMetadata],
      "labels": [LossNoticeLabel],
      "lastUpdateDate": "2007-12-03T10:15:30Z",
      "lossDate": "2007-12-03T10:15:30Z",
      "lossLocation": Location,
      "narrative": {},
      "operation": Actor,
      "reportDate": "2007-12-03T10:15:30Z",
      "reporter": Actor,
      "status": "draft",
      "zone": Zone
    }
  }
}

removeLossNoticeImages

Response

Returns a LossNotice!

Arguments
Name Description
data - RemoveLossNoticeImagesInput!

Example

Query
mutation removeLossNoticeImages($data: RemoveLossNoticeImagesInput!) {
  removeLossNoticeImages(data: $data) {
    actions
    airframes {
      ...LossNoticeAirframeFragment
    }
    categories
    creationDate
    documents {
      ...FileMetadataFragment
    }
    flights {
      ...LossNoticeFlightFragment
    }
    id
    images {
      ...FileMetadataFragment
    }
    labels {
      ...LossNoticeLabelFragment
    }
    lastUpdateDate
    lossDate
    lossLocation {
      ...LocationFragment
    }
    narrative
    operation {
      ...ActorFragment
    }
    reportDate
    reporter {
      ...ActorFragment
    }
    status
    zone {
      ...ZoneFragment
    }
  }
}
Variables
{"data": RemoveLossNoticeImagesInput}
Response
{
  "data": {
    "removeLossNoticeImages": {
      "actions": ["create"],
      "airframes": [LossNoticeAirframe],
      "categories": ["aircraft_hull"],
      "creationDate": "2007-12-03T10:15:30Z",
      "documents": [FileMetadata],
      "flights": [LossNoticeFlight],
      "id": "xyz789",
      "images": [FileMetadata],
      "labels": [LossNoticeLabel],
      "lastUpdateDate": "2007-12-03T10:15:30Z",
      "lossDate": "2007-12-03T10:15:30Z",
      "lossLocation": Location,
      "narrative": {},
      "operation": Actor,
      "reportDate": "2007-12-03T10:15:30Z",
      "reporter": Actor,
      "status": "draft",
      "zone": Zone
    }
  }
}

removePolicy

Description

Remove a Policy

Response

Returns a Policy!

Arguments
Name Description
data - RemovePolicyInput!

Example

Query
mutation removePolicy($data: RemovePolicyInput!) {
  removePolicy(data: $data) {
    cls
    creationDate
    endDate
    id
    labels {
      ...PolicyLabelFragment
    }
    lastUpdateDate
    markets {
      ...PolicyMarketFragment
    }
    namedInsured {
      ...PolicyLegalEntityFragment
    }
    policyNumber
    policyholder {
      ...PolicyLegalEntityFragment
    }
    primaryBroker {
      ...PolicyLegalEntityFragment
    }
    secondaryBroker {
      ...PolicyLegalEntityFragment
    }
    startDate
    type
    zone {
      ...ZoneFragment
    }
  }
}
Variables
{"data": RemovePolicyInput}
Response
{
  "data": {
    "removePolicy": {
      "cls": "aviation",
      "creationDate": "2007-12-03T10:15:30Z",
      "endDate": "2007-12-03T10:15:30Z",
      "id": "xyz789",
      "labels": [PolicyLabel],
      "lastUpdateDate": "2007-12-03T10:15:30Z",
      "markets": [PolicyMarket],
      "namedInsured": [PolicyLegalEntity],
      "policyNumber": "xyz789",
      "policyholder": PolicyLegalEntity,
      "primaryBroker": PolicyLegalEntity,
      "secondaryBroker": PolicyLegalEntity,
      "startDate": "2007-12-03T10:15:30Z",
      "type": ["aviation_contingent_hull_all_risk"],
      "zone": Zone
    }
  }
}

removePolicyCustomLabel

Description

Remove a custom Label from a Policy

Response

Returns a Policy!

Arguments
Name Description
data - RemovePolicyLabelInput!

Example

Query
mutation removePolicyCustomLabel($data: RemovePolicyLabelInput!) {
  removePolicyCustomLabel(data: $data) {
    cls
    creationDate
    endDate
    id
    labels {
      ...PolicyLabelFragment
    }
    lastUpdateDate
    markets {
      ...PolicyMarketFragment
    }
    namedInsured {
      ...PolicyLegalEntityFragment
    }
    policyNumber
    policyholder {
      ...PolicyLegalEntityFragment
    }
    primaryBroker {
      ...PolicyLegalEntityFragment
    }
    secondaryBroker {
      ...PolicyLegalEntityFragment
    }
    startDate
    type
    zone {
      ...ZoneFragment
    }
  }
}
Variables
{"data": RemovePolicyLabelInput}
Response
{
  "data": {
    "removePolicyCustomLabel": {
      "cls": "aviation",
      "creationDate": "2007-12-03T10:15:30Z",
      "endDate": "2007-12-03T10:15:30Z",
      "id": "xyz789",
      "labels": [PolicyLabel],
      "lastUpdateDate": "2007-12-03T10:15:30Z",
      "markets": [PolicyMarket],
      "namedInsured": [PolicyLegalEntity],
      "policyNumber": "abc123",
      "policyholder": PolicyLegalEntity,
      "primaryBroker": PolicyLegalEntity,
      "secondaryBroker": PolicyLegalEntity,
      "startDate": "2007-12-03T10:15:30Z",
      "type": ["aviation_contingent_hull_all_risk"],
      "zone": Zone
    }
  }
}

removePolicyMarket

Description

Remove a Policy Market

Response

Returns a Policy!

Arguments
Name Description
data - RemovePolicyMarketInput!

Example

Query
mutation removePolicyMarket($data: RemovePolicyMarketInput!) {
  removePolicyMarket(data: $data) {
    cls
    creationDate
    endDate
    id
    labels {
      ...PolicyLabelFragment
    }
    lastUpdateDate
    markets {
      ...PolicyMarketFragment
    }
    namedInsured {
      ...PolicyLegalEntityFragment
    }
    policyNumber
    policyholder {
      ...PolicyLegalEntityFragment
    }
    primaryBroker {
      ...PolicyLegalEntityFragment
    }
    secondaryBroker {
      ...PolicyLegalEntityFragment
    }
    startDate
    type
    zone {
      ...ZoneFragment
    }
  }
}
Variables
{"data": RemovePolicyMarketInput}
Response
{
  "data": {
    "removePolicyMarket": {
      "cls": "aviation",
      "creationDate": "2007-12-03T10:15:30Z",
      "endDate": "2007-12-03T10:15:30Z",
      "id": "xyz789",
      "labels": [PolicyLabel],
      "lastUpdateDate": "2007-12-03T10:15:30Z",
      "markets": [PolicyMarket],
      "namedInsured": [PolicyLegalEntity],
      "policyNumber": "xyz789",
      "policyholder": PolicyLegalEntity,
      "primaryBroker": PolicyLegalEntity,
      "secondaryBroker": PolicyLegalEntity,
      "startDate": "2007-12-03T10:15:30Z",
      "type": ["aviation_contingent_hull_all_risk"],
      "zone": Zone
    }
  }
}

removePolicyMarketCompanyLine

Description

Remove a Policy Market Company Line

Response

Returns a Policy!

Arguments
Name Description
data - RemovePolicyMarketCompanyLineInput!

Example

Query
mutation removePolicyMarketCompanyLine($data: RemovePolicyMarketCompanyLineInput!) {
  removePolicyMarketCompanyLine(data: $data) {
    cls
    creationDate
    endDate
    id
    labels {
      ...PolicyLabelFragment
    }
    lastUpdateDate
    markets {
      ...PolicyMarketFragment
    }
    namedInsured {
      ...PolicyLegalEntityFragment
    }
    policyNumber
    policyholder {
      ...PolicyLegalEntityFragment
    }
    primaryBroker {
      ...PolicyLegalEntityFragment
    }
    secondaryBroker {
      ...PolicyLegalEntityFragment
    }
    startDate
    type
    zone {
      ...ZoneFragment
    }
  }
}
Variables
{"data": RemovePolicyMarketCompanyLineInput}
Response
{
  "data": {
    "removePolicyMarketCompanyLine": {
      "cls": "aviation",
      "creationDate": "2007-12-03T10:15:30Z",
      "endDate": "2007-12-03T10:15:30Z",
      "id": "abc123",
      "labels": [PolicyLabel],
      "lastUpdateDate": "2007-12-03T10:15:30Z",
      "markets": [PolicyMarket],
      "namedInsured": [PolicyLegalEntity],
      "policyNumber": "xyz789",
      "policyholder": PolicyLegalEntity,
      "primaryBroker": PolicyLegalEntity,
      "secondaryBroker": PolicyLegalEntity,
      "startDate": "2007-12-03T10:15:30Z",
      "type": ["aviation_contingent_hull_all_risk"],
      "zone": Zone
    }
  }
}

removePolicyMarketCompanyLineTag

Description

Remove a Tag from a Policy Market Company Line

Response

Returns a Policy!

Arguments
Name Description
data - RemovePolicyMarketCompanyLineTagInput!

Example

Query
mutation removePolicyMarketCompanyLineTag($data: RemovePolicyMarketCompanyLineTagInput!) {
  removePolicyMarketCompanyLineTag(data: $data) {
    cls
    creationDate
    endDate
    id
    labels {
      ...PolicyLabelFragment
    }
    lastUpdateDate
    markets {
      ...PolicyMarketFragment
    }
    namedInsured {
      ...PolicyLegalEntityFragment
    }
    policyNumber
    policyholder {
      ...PolicyLegalEntityFragment
    }
    primaryBroker {
      ...PolicyLegalEntityFragment
    }
    secondaryBroker {
      ...PolicyLegalEntityFragment
    }
    startDate
    type
    zone {
      ...ZoneFragment
    }
  }
}
Variables
{"data": RemovePolicyMarketCompanyLineTagInput}
Response
{
  "data": {
    "removePolicyMarketCompanyLineTag": {
      "cls": "aviation",
      "creationDate": "2007-12-03T10:15:30Z",
      "endDate": "2007-12-03T10:15:30Z",
      "id": "xyz789",
      "labels": [PolicyLabel],
      "lastUpdateDate": "2007-12-03T10:15:30Z",
      "markets": [PolicyMarket],
      "namedInsured": [PolicyLegalEntity],
      "policyNumber": "xyz789",
      "policyholder": PolicyLegalEntity,
      "primaryBroker": PolicyLegalEntity,
      "secondaryBroker": PolicyLegalEntity,
      "startDate": "2007-12-03T10:15:30Z",
      "type": ["aviation_contingent_hull_all_risk"],
      "zone": Zone
    }
  }
}

removePolicyMarketWarrantyPolicy

Description

Remove a Policy Market Warrant Policy / Risk Framework

Response

Returns a Policy!

Arguments
Name Description
data - RemovePolicyMarketWarrantyPolicyInput!

Example

Query
mutation removePolicyMarketWarrantyPolicy($data: RemovePolicyMarketWarrantyPolicyInput!) {
  removePolicyMarketWarrantyPolicy(data: $data) {
    cls
    creationDate
    endDate
    id
    labels {
      ...PolicyLabelFragment
    }
    lastUpdateDate
    markets {
      ...PolicyMarketFragment
    }
    namedInsured {
      ...PolicyLegalEntityFragment
    }
    policyNumber
    policyholder {
      ...PolicyLegalEntityFragment
    }
    primaryBroker {
      ...PolicyLegalEntityFragment
    }
    secondaryBroker {
      ...PolicyLegalEntityFragment
    }
    startDate
    type
    zone {
      ...ZoneFragment
    }
  }
}
Variables
{"data": RemovePolicyMarketWarrantyPolicyInput}
Response
{
  "data": {
    "removePolicyMarketWarrantyPolicy": {
      "cls": "aviation",
      "creationDate": "2007-12-03T10:15:30Z",
      "endDate": "2007-12-03T10:15:30Z",
      "id": "xyz789",
      "labels": [PolicyLabel],
      "lastUpdateDate": "2007-12-03T10:15:30Z",
      "markets": [PolicyMarket],
      "namedInsured": [PolicyLegalEntity],
      "policyNumber": "xyz789",
      "policyholder": PolicyLegalEntity,
      "primaryBroker": PolicyLegalEntity,
      "secondaryBroker": PolicyLegalEntity,
      "startDate": "2007-12-03T10:15:30Z",
      "type": ["aviation_contingent_hull_all_risk"],
      "zone": Zone
    }
  }
}

removePolicyNamedInsured

Description

Remove a Named Insured from a Policy

Response

Returns a Policy!

Arguments
Name Description
data - RemovePolicyNamedInsuredInput!

Example

Query
mutation removePolicyNamedInsured($data: RemovePolicyNamedInsuredInput!) {
  removePolicyNamedInsured(data: $data) {
    cls
    creationDate
    endDate
    id
    labels {
      ...PolicyLabelFragment
    }
    lastUpdateDate
    markets {
      ...PolicyMarketFragment
    }
    namedInsured {
      ...PolicyLegalEntityFragment
    }
    policyNumber
    policyholder {
      ...PolicyLegalEntityFragment
    }
    primaryBroker {
      ...PolicyLegalEntityFragment
    }
    secondaryBroker {
      ...PolicyLegalEntityFragment
    }
    startDate
    type
    zone {
      ...ZoneFragment
    }
  }
}
Variables
{"data": RemovePolicyNamedInsuredInput}
Response
{
  "data": {
    "removePolicyNamedInsured": {
      "cls": "aviation",
      "creationDate": "2007-12-03T10:15:30Z",
      "endDate": "2007-12-03T10:15:30Z",
      "id": "abc123",
      "labels": [PolicyLabel],
      "lastUpdateDate": "2007-12-03T10:15:30Z",
      "markets": [PolicyMarket],
      "namedInsured": [PolicyLegalEntity],
      "policyNumber": "xyz789",
      "policyholder": PolicyLegalEntity,
      "primaryBroker": PolicyLegalEntity,
      "secondaryBroker": PolicyLegalEntity,
      "startDate": "2007-12-03T10:15:30Z",
      "type": ["aviation_contingent_hull_all_risk"],
      "zone": Zone
    }
  }
}

saveAdjustmentAllocationVersion

Description

Save the latest version of the Adjustment Allocation

Response

Returns an Adjustment!

Arguments
Name Description
data - SaveAdjustmentAllocationVersionInput!

Example

Query
mutation saveAdjustmentAllocationVersion($data: SaveAdjustmentAllocationVersionInput!) {
  saveAdjustmentAllocationVersion(data: $data) {
    actions {
      ...AdjustmentActionFragment
    }
    airframes {
      ...AdjustmentAirframeFragment
    }
    allocations {
      ...AdjustmentAllocationFragment
    }
    categories
    collaborators {
      ...ActorFragment
    }
    costsExpenses {
      ...AdjustmentCostsExpensesFragment
    }
    creationDate
    documents {
      ...FileMetadataFragment
    }
    executiveSummary
    expert {
      ...ActorFragment
    }
    fees {
      ...AdjustmentFeesFragment
    }
    flights {
      ...AdjustmentFlightFragment
    }
    id
    images {
      ...FileMetadataFragment
    }
    indemnity {
      ...AdjustmentIndemnityFragment
    }
    labels {
      ...AdjustmentLabelFragment
    }
    lastUpdateDate
    legalEntities {
      ...AdjustmentLegalEntitiesFragment
    }
    lossDate
    lossLocation {
      ...LocationFragment
    }
    lossNotice {
      ...LossNoticeFragment
    }
    marketReferences {
      ...MarketReferenceFragment
    }
    operation {
      ...ActorFragment
    }
    owner {
      ...ActorFragment
    }
    recommendations
    reportDate
    reporter {
      ...ActorFragment
    }
    reportingCurrency
    reports {
      ...AdjustmentReportFragment
    }
    stakeholderReferences {
      ...StakeholderReferenceFragment
    }
    status
    statusHistory {
      ...AdjustmentStatusChangeFragment
    }
    transitions {
      ...AdjustmentTransitionFragment
    }
    unpublishedChanges
    zone {
      ...ZoneFragment
    }
  }
}
Variables
{"data": SaveAdjustmentAllocationVersionInput}
Response
{
  "data": {
    "saveAdjustmentAllocationVersion": {
      "actions": [AdjustmentAction],
      "airframes": [AdjustmentAirframe],
      "allocations": [AdjustmentAllocation],
      "categories": ["aircraft_hull"],
      "collaborators": [Actor],
      "costsExpenses": AdjustmentCostsExpenses,
      "creationDate": "2007-12-03T10:15:30Z",
      "documents": [FileMetadata],
      "executiveSummary": {},
      "expert": Actor,
      "fees": AdjustmentFees,
      "flights": [AdjustmentFlight],
      "id": "abc123",
      "images": [FileMetadata],
      "indemnity": AdjustmentIndemnity,
      "labels": [AdjustmentLabel],
      "lastUpdateDate": "2007-12-03T10:15:30Z",
      "legalEntities": AdjustmentLegalEntities,
      "lossDate": "2007-12-03T10:15:30Z",
      "lossLocation": Location,
      "lossNotice": LossNotice,
      "marketReferences": [MarketReference],
      "operation": Actor,
      "owner": Actor,
      "recommendations": {},
      "reportDate": "2007-12-03T10:15:30Z",
      "reporter": Actor,
      "reportingCurrency": "xyz789",
      "reports": [AdjustmentReport],
      "stakeholderReferences": [StakeholderReference],
      "status": "abeyance",
      "statusHistory": [AdjustmentStatusChange],
      "transitions": [AdjustmentTransition],
      "unpublishedChanges": true,
      "zone": Zone
    }
  }
}

saveAdjustmentReportRevision

Description

Save the latest version of the Adjustment report

Response

Returns an Adjustment!

Arguments
Name Description
data - SaveAdjustmentReportRevisionInput!

Example

Query
mutation saveAdjustmentReportRevision($data: SaveAdjustmentReportRevisionInput!) {
  saveAdjustmentReportRevision(data: $data) {
    actions {
      ...AdjustmentActionFragment
    }
    airframes {
      ...AdjustmentAirframeFragment
    }
    allocations {
      ...AdjustmentAllocationFragment
    }
    categories
    collaborators {
      ...ActorFragment
    }
    costsExpenses {
      ...AdjustmentCostsExpensesFragment
    }
    creationDate
    documents {
      ...FileMetadataFragment
    }
    executiveSummary
    expert {
      ...ActorFragment
    }
    fees {
      ...AdjustmentFeesFragment
    }
    flights {
      ...AdjustmentFlightFragment
    }
    id
    images {
      ...FileMetadataFragment
    }
    indemnity {
      ...AdjustmentIndemnityFragment
    }
    labels {
      ...AdjustmentLabelFragment
    }
    lastUpdateDate
    legalEntities {
      ...AdjustmentLegalEntitiesFragment
    }
    lossDate
    lossLocation {
      ...LocationFragment
    }
    lossNotice {
      ...LossNoticeFragment
    }
    marketReferences {
      ...MarketReferenceFragment
    }
    operation {
      ...ActorFragment
    }
    owner {
      ...ActorFragment
    }
    recommendations
    reportDate
    reporter {
      ...ActorFragment
    }
    reportingCurrency
    reports {
      ...AdjustmentReportFragment
    }
    stakeholderReferences {
      ...StakeholderReferenceFragment
    }
    status
    statusHistory {
      ...AdjustmentStatusChangeFragment
    }
    transitions {
      ...AdjustmentTransitionFragment
    }
    unpublishedChanges
    zone {
      ...ZoneFragment
    }
  }
}
Variables
{"data": SaveAdjustmentReportRevisionInput}
Response
{
  "data": {
    "saveAdjustmentReportRevision": {
      "actions": [AdjustmentAction],
      "airframes": [AdjustmentAirframe],
      "allocations": [AdjustmentAllocation],
      "categories": ["aircraft_hull"],
      "collaborators": [Actor],
      "costsExpenses": AdjustmentCostsExpenses,
      "creationDate": "2007-12-03T10:15:30Z",
      "documents": [FileMetadata],
      "executiveSummary": {},
      "expert": Actor,
      "fees": AdjustmentFees,
      "flights": [AdjustmentFlight],
      "id": "xyz789",
      "images": [FileMetadata],
      "indemnity": AdjustmentIndemnity,
      "labels": [AdjustmentLabel],
      "lastUpdateDate": "2007-12-03T10:15:30Z",
      "legalEntities": AdjustmentLegalEntities,
      "lossDate": "2007-12-03T10:15:30Z",
      "lossLocation": Location,
      "lossNotice": LossNotice,
      "marketReferences": [MarketReference],
      "operation": Actor,
      "owner": Actor,
      "recommendations": {},
      "reportDate": "2007-12-03T10:15:30Z",
      "reporter": Actor,
      "reportingCurrency": "xyz789",
      "reports": [AdjustmentReport],
      "stakeholderReferences": [StakeholderReference],
      "status": "abeyance",
      "statusHistory": [AdjustmentStatusChange],
      "transitions": [AdjustmentTransition],
      "unpublishedChanges": true,
      "zone": Zone
    }
  }
}

updateAdjustmentAirframeCrewMember

Description

Update an Adjustment Airframe Crew Member

Response

Returns an Adjustment!

Arguments
Name Description
data - UpdateAdjustmentAirframeCrewMemberInput!

Example

Query
mutation updateAdjustmentAirframeCrewMember($data: UpdateAdjustmentAirframeCrewMemberInput!) {
  updateAdjustmentAirframeCrewMember(data: $data) {
    actions {
      ...AdjustmentActionFragment
    }
    airframes {
      ...AdjustmentAirframeFragment
    }
    allocations {
      ...AdjustmentAllocationFragment
    }
    categories
    collaborators {
      ...ActorFragment
    }
    costsExpenses {
      ...AdjustmentCostsExpensesFragment
    }
    creationDate
    documents {
      ...FileMetadataFragment
    }
    executiveSummary
    expert {
      ...ActorFragment
    }
    fees {
      ...AdjustmentFeesFragment
    }
    flights {
      ...AdjustmentFlightFragment
    }
    id
    images {
      ...FileMetadataFragment
    }
    indemnity {
      ...AdjustmentIndemnityFragment
    }
    labels {
      ...AdjustmentLabelFragment
    }
    lastUpdateDate
    legalEntities {
      ...AdjustmentLegalEntitiesFragment
    }
    lossDate
    lossLocation {
      ...LocationFragment
    }
    lossNotice {
      ...LossNoticeFragment
    }
    marketReferences {
      ...MarketReferenceFragment
    }
    operation {
      ...ActorFragment
    }
    owner {
      ...ActorFragment
    }
    recommendations
    reportDate
    reporter {
      ...ActorFragment
    }
    reportingCurrency
    reports {
      ...AdjustmentReportFragment
    }
    stakeholderReferences {
      ...StakeholderReferenceFragment
    }
    status
    statusHistory {
      ...AdjustmentStatusChangeFragment
    }
    transitions {
      ...AdjustmentTransitionFragment
    }
    unpublishedChanges
    zone {
      ...ZoneFragment
    }
  }
}
Variables
{"data": UpdateAdjustmentAirframeCrewMemberInput}
Response
{
  "data": {
    "updateAdjustmentAirframeCrewMember": {
      "actions": [AdjustmentAction],
      "airframes": [AdjustmentAirframe],
      "allocations": [AdjustmentAllocation],
      "categories": ["aircraft_hull"],
      "collaborators": [Actor],
      "costsExpenses": AdjustmentCostsExpenses,
      "creationDate": "2007-12-03T10:15:30Z",
      "documents": [FileMetadata],
      "executiveSummary": {},
      "expert": Actor,
      "fees": AdjustmentFees,
      "flights": [AdjustmentFlight],
      "id": "xyz789",
      "images": [FileMetadata],
      "indemnity": AdjustmentIndemnity,
      "labels": [AdjustmentLabel],
      "lastUpdateDate": "2007-12-03T10:15:30Z",
      "legalEntities": AdjustmentLegalEntities,
      "lossDate": "2007-12-03T10:15:30Z",
      "lossLocation": Location,
      "lossNotice": LossNotice,
      "marketReferences": [MarketReference],
      "operation": Actor,
      "owner": Actor,
      "recommendations": {},
      "reportDate": "2007-12-03T10:15:30Z",
      "reporter": Actor,
      "reportingCurrency": "xyz789",
      "reports": [AdjustmentReport],
      "stakeholderReferences": [StakeholderReference],
      "status": "abeyance",
      "statusHistory": [AdjustmentStatusChange],
      "transitions": [AdjustmentTransition],
      "unpublishedChanges": false,
      "zone": Zone
    }
  }
}

updateAdjustmentAirframeCrewMemberExperience

Description

Update the Experience of an Adjustment Airframe Crew Member

Response

Returns an Adjustment!

Arguments
Name Description
data - UpdateAdjustmentAirframeCrewMemberExperienceInput!

Example

Query
mutation updateAdjustmentAirframeCrewMemberExperience($data: UpdateAdjustmentAirframeCrewMemberExperienceInput!) {
  updateAdjustmentAirframeCrewMemberExperience(data: $data) {
    actions {
      ...AdjustmentActionFragment
    }
    airframes {
      ...AdjustmentAirframeFragment
    }
    allocations {
      ...AdjustmentAllocationFragment
    }
    categories
    collaborators {
      ...ActorFragment
    }
    costsExpenses {
      ...AdjustmentCostsExpensesFragment
    }
    creationDate
    documents {
      ...FileMetadataFragment
    }
    executiveSummary
    expert {
      ...ActorFragment
    }
    fees {
      ...AdjustmentFeesFragment
    }
    flights {
      ...AdjustmentFlightFragment
    }
    id
    images {
      ...FileMetadataFragment
    }
    indemnity {
      ...AdjustmentIndemnityFragment
    }
    labels {
      ...AdjustmentLabelFragment
    }
    lastUpdateDate
    legalEntities {
      ...AdjustmentLegalEntitiesFragment
    }
    lossDate
    lossLocation {
      ...LocationFragment
    }
    lossNotice {
      ...LossNoticeFragment
    }
    marketReferences {
      ...MarketReferenceFragment
    }
    operation {
      ...ActorFragment
    }
    owner {
      ...ActorFragment
    }
    recommendations
    reportDate
    reporter {
      ...ActorFragment
    }
    reportingCurrency
    reports {
      ...AdjustmentReportFragment
    }
    stakeholderReferences {
      ...StakeholderReferenceFragment
    }
    status
    statusHistory {
      ...AdjustmentStatusChangeFragment
    }
    transitions {
      ...AdjustmentTransitionFragment
    }
    unpublishedChanges
    zone {
      ...ZoneFragment
    }
  }
}
Variables
{
  "data": UpdateAdjustmentAirframeCrewMemberExperienceInput
}
Response
{
  "data": {
    "updateAdjustmentAirframeCrewMemberExperience": {
      "actions": [AdjustmentAction],
      "airframes": [AdjustmentAirframe],
      "allocations": [AdjustmentAllocation],
      "categories": ["aircraft_hull"],
      "collaborators": [Actor],
      "costsExpenses": AdjustmentCostsExpenses,
      "creationDate": "2007-12-03T10:15:30Z",
      "documents": [FileMetadata],
      "executiveSummary": {},
      "expert": Actor,
      "fees": AdjustmentFees,
      "flights": [AdjustmentFlight],
      "id": "xyz789",
      "images": [FileMetadata],
      "indemnity": AdjustmentIndemnity,
      "labels": [AdjustmentLabel],
      "lastUpdateDate": "2007-12-03T10:15:30Z",
      "legalEntities": AdjustmentLegalEntities,
      "lossDate": "2007-12-03T10:15:30Z",
      "lossLocation": Location,
      "lossNotice": LossNotice,
      "marketReferences": [MarketReference],
      "operation": Actor,
      "owner": Actor,
      "recommendations": {},
      "reportDate": "2007-12-03T10:15:30Z",
      "reporter": Actor,
      "reportingCurrency": "xyz789",
      "reports": [AdjustmentReport],
      "stakeholderReferences": [StakeholderReference],
      "status": "abeyance",
      "statusHistory": [AdjustmentStatusChange],
      "transitions": [AdjustmentTransition],
      "unpublishedChanges": false,
      "zone": Zone
    }
  }
}

updateAdjustmentAirframeCrewMemberFlightRole

Description

Update the Flight Role of an Adjustment Airframe Crew Member

Response

Returns an Adjustment!

Arguments
Name Description
data - UpdateAdjustmentAirframeCrewMemberFlightRoleInput!

Example

Query
mutation updateAdjustmentAirframeCrewMemberFlightRole($data: UpdateAdjustmentAirframeCrewMemberFlightRoleInput!) {
  updateAdjustmentAirframeCrewMemberFlightRole(data: $data) {
    actions {
      ...AdjustmentActionFragment
    }
    airframes {
      ...AdjustmentAirframeFragment
    }
    allocations {
      ...AdjustmentAllocationFragment
    }
    categories
    collaborators {
      ...ActorFragment
    }
    costsExpenses {
      ...AdjustmentCostsExpensesFragment
    }
    creationDate
    documents {
      ...FileMetadataFragment
    }
    executiveSummary
    expert {
      ...ActorFragment
    }
    fees {
      ...AdjustmentFeesFragment
    }
    flights {
      ...AdjustmentFlightFragment
    }
    id
    images {
      ...FileMetadataFragment
    }
    indemnity {
      ...AdjustmentIndemnityFragment
    }
    labels {
      ...AdjustmentLabelFragment
    }
    lastUpdateDate
    legalEntities {
      ...AdjustmentLegalEntitiesFragment
    }
    lossDate
    lossLocation {
      ...LocationFragment
    }
    lossNotice {
      ...LossNoticeFragment
    }
    marketReferences {
      ...MarketReferenceFragment
    }
    operation {
      ...ActorFragment
    }
    owner {
      ...ActorFragment
    }
    recommendations
    reportDate
    reporter {
      ...ActorFragment
    }
    reportingCurrency
    reports {
      ...AdjustmentReportFragment
    }
    stakeholderReferences {
      ...StakeholderReferenceFragment
    }
    status
    statusHistory {
      ...AdjustmentStatusChangeFragment
    }
    transitions {
      ...AdjustmentTransitionFragment
    }
    unpublishedChanges
    zone {
      ...ZoneFragment
    }
  }
}
Variables
{
  "data": UpdateAdjustmentAirframeCrewMemberFlightRoleInput
}
Response
{
  "data": {
    "updateAdjustmentAirframeCrewMemberFlightRole": {
      "actions": [AdjustmentAction],
      "airframes": [AdjustmentAirframe],
      "allocations": [AdjustmentAllocation],
      "categories": ["aircraft_hull"],
      "collaborators": [Actor],
      "costsExpenses": AdjustmentCostsExpenses,
      "creationDate": "2007-12-03T10:15:30Z",
      "documents": [FileMetadata],
      "executiveSummary": {},
      "expert": Actor,
      "fees": AdjustmentFees,
      "flights": [AdjustmentFlight],
      "id": "abc123",
      "images": [FileMetadata],
      "indemnity": AdjustmentIndemnity,
      "labels": [AdjustmentLabel],
      "lastUpdateDate": "2007-12-03T10:15:30Z",
      "legalEntities": AdjustmentLegalEntities,
      "lossDate": "2007-12-03T10:15:30Z",
      "lossLocation": Location,
      "lossNotice": LossNotice,
      "marketReferences": [MarketReference],
      "operation": Actor,
      "owner": Actor,
      "recommendations": {},
      "reportDate": "2007-12-03T10:15:30Z",
      "reporter": Actor,
      "reportingCurrency": "abc123",
      "reports": [AdjustmentReport],
      "stakeholderReferences": [StakeholderReference],
      "status": "abeyance",
      "statusHistory": [AdjustmentStatusChange],
      "transitions": [AdjustmentTransition],
      "unpublishedChanges": true,
      "zone": Zone
    }
  }
}

updateAdjustmentAirframeCrewMemberNarrative

Description

Update the narrative of an Adjustment Airframe Crew Member

Response

Returns an Adjustment!

Arguments
Name Description
data - UpdateAdjustmentAirframeCrewMemberNarrativeInput!

Example

Query
mutation updateAdjustmentAirframeCrewMemberNarrative($data: UpdateAdjustmentAirframeCrewMemberNarrativeInput!) {
  updateAdjustmentAirframeCrewMemberNarrative(data: $data) {
    actions {
      ...AdjustmentActionFragment
    }
    airframes {
      ...AdjustmentAirframeFragment
    }
    allocations {
      ...AdjustmentAllocationFragment
    }
    categories
    collaborators {
      ...ActorFragment
    }
    costsExpenses {
      ...AdjustmentCostsExpensesFragment
    }
    creationDate
    documents {
      ...FileMetadataFragment
    }
    executiveSummary
    expert {
      ...ActorFragment
    }
    fees {
      ...AdjustmentFeesFragment
    }
    flights {
      ...AdjustmentFlightFragment
    }
    id
    images {
      ...FileMetadataFragment
    }
    indemnity {
      ...AdjustmentIndemnityFragment
    }
    labels {
      ...AdjustmentLabelFragment
    }
    lastUpdateDate
    legalEntities {
      ...AdjustmentLegalEntitiesFragment
    }
    lossDate
    lossLocation {
      ...LocationFragment
    }
    lossNotice {
      ...LossNoticeFragment
    }
    marketReferences {
      ...MarketReferenceFragment
    }
    operation {
      ...ActorFragment
    }
    owner {
      ...ActorFragment
    }
    recommendations
    reportDate
    reporter {
      ...ActorFragment
    }
    reportingCurrency
    reports {
      ...AdjustmentReportFragment
    }
    stakeholderReferences {
      ...StakeholderReferenceFragment
    }
    status
    statusHistory {
      ...AdjustmentStatusChangeFragment
    }
    transitions {
      ...AdjustmentTransitionFragment
    }
    unpublishedChanges
    zone {
      ...ZoneFragment
    }
  }
}
Variables
{"data": UpdateAdjustmentAirframeCrewMemberNarrativeInput}
Response
{
  "data": {
    "updateAdjustmentAirframeCrewMemberNarrative": {
      "actions": [AdjustmentAction],
      "airframes": [AdjustmentAirframe],
      "allocations": [AdjustmentAllocation],
      "categories": ["aircraft_hull"],
      "collaborators": [Actor],
      "costsExpenses": AdjustmentCostsExpenses,
      "creationDate": "2007-12-03T10:15:30Z",
      "documents": [FileMetadata],
      "executiveSummary": {},
      "expert": Actor,
      "fees": AdjustmentFees,
      "flights": [AdjustmentFlight],
      "id": "xyz789",
      "images": [FileMetadata],
      "indemnity": AdjustmentIndemnity,
      "labels": [AdjustmentLabel],
      "lastUpdateDate": "2007-12-03T10:15:30Z",
      "legalEntities": AdjustmentLegalEntities,
      "lossDate": "2007-12-03T10:15:30Z",
      "lossLocation": Location,
      "lossNotice": LossNotice,
      "marketReferences": [MarketReference],
      "operation": Actor,
      "owner": Actor,
      "recommendations": {},
      "reportDate": "2007-12-03T10:15:30Z",
      "reporter": Actor,
      "reportingCurrency": "xyz789",
      "reports": [AdjustmentReport],
      "stakeholderReferences": [StakeholderReference],
      "status": "abeyance",
      "statusHistory": [AdjustmentStatusChange],
      "transitions": [AdjustmentTransition],
      "unpublishedChanges": false,
      "zone": Zone
    }
  }
}

updateAdjustmentAirframeCrewMemberWorkload

Description

Update the Workload of an Adjustment Airframe Crew Member

Response

Returns an Adjustment!

Arguments
Name Description
data - UpdateAdjustmentAirframeCrewMemberWorkloadInput!

Example

Query
mutation updateAdjustmentAirframeCrewMemberWorkload($data: UpdateAdjustmentAirframeCrewMemberWorkloadInput!) {
  updateAdjustmentAirframeCrewMemberWorkload(data: $data) {
    actions {
      ...AdjustmentActionFragment
    }
    airframes {
      ...AdjustmentAirframeFragment
    }
    allocations {
      ...AdjustmentAllocationFragment
    }
    categories
    collaborators {
      ...ActorFragment
    }
    costsExpenses {
      ...AdjustmentCostsExpensesFragment
    }
    creationDate
    documents {
      ...FileMetadataFragment
    }
    executiveSummary
    expert {
      ...ActorFragment
    }
    fees {
      ...AdjustmentFeesFragment
    }
    flights {
      ...AdjustmentFlightFragment
    }
    id
    images {
      ...FileMetadataFragment
    }
    indemnity {
      ...AdjustmentIndemnityFragment
    }
    labels {
      ...AdjustmentLabelFragment
    }
    lastUpdateDate
    legalEntities {
      ...AdjustmentLegalEntitiesFragment
    }
    lossDate
    lossLocation {
      ...LocationFragment
    }
    lossNotice {
      ...LossNoticeFragment
    }
    marketReferences {
      ...MarketReferenceFragment
    }
    operation {
      ...ActorFragment
    }
    owner {
      ...ActorFragment
    }
    recommendations
    reportDate
    reporter {
      ...ActorFragment
    }
    reportingCurrency
    reports {
      ...AdjustmentReportFragment
    }
    stakeholderReferences {
      ...StakeholderReferenceFragment
    }
    status
    statusHistory {
      ...AdjustmentStatusChangeFragment
    }
    transitions {
      ...AdjustmentTransitionFragment
    }
    unpublishedChanges
    zone {
      ...ZoneFragment
    }
  }
}
Variables
{"data": UpdateAdjustmentAirframeCrewMemberWorkloadInput}
Response
{
  "data": {
    "updateAdjustmentAirframeCrewMemberWorkload": {
      "actions": [AdjustmentAction],
      "airframes": [AdjustmentAirframe],
      "allocations": [AdjustmentAllocation],
      "categories": ["aircraft_hull"],
      "collaborators": [Actor],
      "costsExpenses": AdjustmentCostsExpenses,
      "creationDate": "2007-12-03T10:15:30Z",
      "documents": [FileMetadata],
      "executiveSummary": {},
      "expert": Actor,
      "fees": AdjustmentFees,
      "flights": [AdjustmentFlight],
      "id": "abc123",
      "images": [FileMetadata],
      "indemnity": AdjustmentIndemnity,
      "labels": [AdjustmentLabel],
      "lastUpdateDate": "2007-12-03T10:15:30Z",
      "legalEntities": AdjustmentLegalEntities,
      "lossDate": "2007-12-03T10:15:30Z",
      "lossLocation": Location,
      "lossNotice": LossNotice,
      "marketReferences": [MarketReference],
      "operation": Actor,
      "owner": Actor,
      "recommendations": {},
      "reportDate": "2007-12-03T10:15:30Z",
      "reporter": Actor,
      "reportingCurrency": "xyz789",
      "reports": [AdjustmentReport],
      "stakeholderReferences": [StakeholderReference],
      "status": "abeyance",
      "statusHistory": [AdjustmentStatusChange],
      "transitions": [AdjustmentTransition],
      "unpublishedChanges": true,
      "zone": Zone
    }
  }
}

updateAdjustmentAirframeEngine

Description

Update an Adjustment Airframe Engine

Response

Returns an Adjustment!

Arguments
Name Description
data - UpdateAdjustmentAirframeEngineInput!

Example

Query
mutation updateAdjustmentAirframeEngine($data: UpdateAdjustmentAirframeEngineInput!) {
  updateAdjustmentAirframeEngine(data: $data) {
    actions {
      ...AdjustmentActionFragment
    }
    airframes {
      ...AdjustmentAirframeFragment
    }
    allocations {
      ...AdjustmentAllocationFragment
    }
    categories
    collaborators {
      ...ActorFragment
    }
    costsExpenses {
      ...AdjustmentCostsExpensesFragment
    }
    creationDate
    documents {
      ...FileMetadataFragment
    }
    executiveSummary
    expert {
      ...ActorFragment
    }
    fees {
      ...AdjustmentFeesFragment
    }
    flights {
      ...AdjustmentFlightFragment
    }
    id
    images {
      ...FileMetadataFragment
    }
    indemnity {
      ...AdjustmentIndemnityFragment
    }
    labels {
      ...AdjustmentLabelFragment
    }
    lastUpdateDate
    legalEntities {
      ...AdjustmentLegalEntitiesFragment
    }
    lossDate
    lossLocation {
      ...LocationFragment
    }
    lossNotice {
      ...LossNoticeFragment
    }
    marketReferences {
      ...MarketReferenceFragment
    }
    operation {
      ...ActorFragment
    }
    owner {
      ...ActorFragment
    }
    recommendations
    reportDate
    reporter {
      ...ActorFragment
    }
    reportingCurrency
    reports {
      ...AdjustmentReportFragment
    }
    stakeholderReferences {
      ...StakeholderReferenceFragment
    }
    status
    statusHistory {
      ...AdjustmentStatusChangeFragment
    }
    transitions {
      ...AdjustmentTransitionFragment
    }
    unpublishedChanges
    zone {
      ...ZoneFragment
    }
  }
}
Variables
{"data": UpdateAdjustmentAirframeEngineInput}
Response
{
  "data": {
    "updateAdjustmentAirframeEngine": {
      "actions": [AdjustmentAction],
      "airframes": [AdjustmentAirframe],
      "allocations": [AdjustmentAllocation],
      "categories": ["aircraft_hull"],
      "collaborators": [Actor],
      "costsExpenses": AdjustmentCostsExpenses,
      "creationDate": "2007-12-03T10:15:30Z",
      "documents": [FileMetadata],
      "executiveSummary": {},
      "expert": Actor,
      "fees": AdjustmentFees,
      "flights": [AdjustmentFlight],
      "id": "xyz789",
      "images": [FileMetadata],
      "indemnity": AdjustmentIndemnity,
      "labels": [AdjustmentLabel],
      "lastUpdateDate": "2007-12-03T10:15:30Z",
      "legalEntities": AdjustmentLegalEntities,
      "lossDate": "2007-12-03T10:15:30Z",
      "lossLocation": Location,
      "lossNotice": LossNotice,
      "marketReferences": [MarketReference],
      "operation": Actor,
      "owner": Actor,
      "recommendations": {},
      "reportDate": "2007-12-03T10:15:30Z",
      "reporter": Actor,
      "reportingCurrency": "abc123",
      "reports": [AdjustmentReport],
      "stakeholderReferences": [StakeholderReference],
      "status": "abeyance",
      "statusHistory": [AdjustmentStatusChange],
      "transitions": [AdjustmentTransition],
      "unpublishedChanges": false,
      "zone": Zone
    }
  }
}

updateAdjustmentAirframeEngineDamage

Description

Update the Damage of an Adjustment Airframe Engine

Response

Returns an Adjustment!

Arguments
Name Description
data - UpdateAdjustmentAirframeEngineDamageInput!

Example

Query
mutation updateAdjustmentAirframeEngineDamage($data: UpdateAdjustmentAirframeEngineDamageInput!) {
  updateAdjustmentAirframeEngineDamage(data: $data) {
    actions {
      ...AdjustmentActionFragment
    }
    airframes {
      ...AdjustmentAirframeFragment
    }
    allocations {
      ...AdjustmentAllocationFragment
    }
    categories
    collaborators {
      ...ActorFragment
    }
    costsExpenses {
      ...AdjustmentCostsExpensesFragment
    }
    creationDate
    documents {
      ...FileMetadataFragment
    }
    executiveSummary
    expert {
      ...ActorFragment
    }
    fees {
      ...AdjustmentFeesFragment
    }
    flights {
      ...AdjustmentFlightFragment
    }
    id
    images {
      ...FileMetadataFragment
    }
    indemnity {
      ...AdjustmentIndemnityFragment
    }
    labels {
      ...AdjustmentLabelFragment
    }
    lastUpdateDate
    legalEntities {
      ...AdjustmentLegalEntitiesFragment
    }
    lossDate
    lossLocation {
      ...LocationFragment
    }
    lossNotice {
      ...LossNoticeFragment
    }
    marketReferences {
      ...MarketReferenceFragment
    }
    operation {
      ...ActorFragment
    }
    owner {
      ...ActorFragment
    }
    recommendations
    reportDate
    reporter {
      ...ActorFragment
    }
    reportingCurrency
    reports {
      ...AdjustmentReportFragment
    }
    stakeholderReferences {
      ...StakeholderReferenceFragment
    }
    status
    statusHistory {
      ...AdjustmentStatusChangeFragment
    }
    transitions {
      ...AdjustmentTransitionFragment
    }
    unpublishedChanges
    zone {
      ...ZoneFragment
    }
  }
}
Variables
{"data": UpdateAdjustmentAirframeEngineDamageInput}
Response
{
  "data": {
    "updateAdjustmentAirframeEngineDamage": {
      "actions": [AdjustmentAction],
      "airframes": [AdjustmentAirframe],
      "allocations": [AdjustmentAllocation],
      "categories": ["aircraft_hull"],
      "collaborators": [Actor],
      "costsExpenses": AdjustmentCostsExpenses,
      "creationDate": "2007-12-03T10:15:30Z",
      "documents": [FileMetadata],
      "executiveSummary": {},
      "expert": Actor,
      "fees": AdjustmentFees,
      "flights": [AdjustmentFlight],
      "id": "xyz789",
      "images": [FileMetadata],
      "indemnity": AdjustmentIndemnity,
      "labels": [AdjustmentLabel],
      "lastUpdateDate": "2007-12-03T10:15:30Z",
      "legalEntities": AdjustmentLegalEntities,
      "lossDate": "2007-12-03T10:15:30Z",
      "lossLocation": Location,
      "lossNotice": LossNotice,
      "marketReferences": [MarketReference],
      "operation": Actor,
      "owner": Actor,
      "recommendations": {},
      "reportDate": "2007-12-03T10:15:30Z",
      "reporter": Actor,
      "reportingCurrency": "xyz789",
      "reports": [AdjustmentReport],
      "stakeholderReferences": [StakeholderReference],
      "status": "abeyance",
      "statusHistory": [AdjustmentStatusChange],
      "transitions": [AdjustmentTransition],
      "unpublishedChanges": false,
      "zone": Zone
    }
  }
}

updateAdjustmentAirframeEngineDamageNarrative

Description

Update the Damage narrative of an Adjustment Airframe Engine

Response

Returns an Adjustment!

Arguments
Name Description
data - UpdateAdjustmentAirframeEngineDamageNarrativeInput!

Example

Query
mutation updateAdjustmentAirframeEngineDamageNarrative($data: UpdateAdjustmentAirframeEngineDamageNarrativeInput!) {
  updateAdjustmentAirframeEngineDamageNarrative(data: $data) {
    actions {
      ...AdjustmentActionFragment
    }
    airframes {
      ...AdjustmentAirframeFragment
    }
    allocations {
      ...AdjustmentAllocationFragment
    }
    categories
    collaborators {
      ...ActorFragment
    }
    costsExpenses {
      ...AdjustmentCostsExpensesFragment
    }
    creationDate
    documents {
      ...FileMetadataFragment
    }
    executiveSummary
    expert {
      ...ActorFragment
    }
    fees {
      ...AdjustmentFeesFragment
    }
    flights {
      ...AdjustmentFlightFragment
    }
    id
    images {
      ...FileMetadataFragment
    }
    indemnity {
      ...AdjustmentIndemnityFragment
    }
    labels {
      ...AdjustmentLabelFragment
    }
    lastUpdateDate
    legalEntities {
      ...AdjustmentLegalEntitiesFragment
    }
    lossDate
    lossLocation {
      ...LocationFragment
    }
    lossNotice {
      ...LossNoticeFragment
    }
    marketReferences {
      ...MarketReferenceFragment
    }
    operation {
      ...ActorFragment
    }
    owner {
      ...ActorFragment
    }
    recommendations
    reportDate
    reporter {
      ...ActorFragment
    }
    reportingCurrency
    reports {
      ...AdjustmentReportFragment
    }
    stakeholderReferences {
      ...StakeholderReferenceFragment
    }
    status
    statusHistory {
      ...AdjustmentStatusChangeFragment
    }
    transitions {
      ...AdjustmentTransitionFragment
    }
    unpublishedChanges
    zone {
      ...ZoneFragment
    }
  }
}
Variables
{
  "data": UpdateAdjustmentAirframeEngineDamageNarrativeInput
}
Response
{
  "data": {
    "updateAdjustmentAirframeEngineDamageNarrative": {
      "actions": [AdjustmentAction],
      "airframes": [AdjustmentAirframe],
      "allocations": [AdjustmentAllocation],
      "categories": ["aircraft_hull"],
      "collaborators": [Actor],
      "costsExpenses": AdjustmentCostsExpenses,
      "creationDate": "2007-12-03T10:15:30Z",
      "documents": [FileMetadata],
      "executiveSummary": {},
      "expert": Actor,
      "fees": AdjustmentFees,
      "flights": [AdjustmentFlight],
      "id": "xyz789",
      "images": [FileMetadata],
      "indemnity": AdjustmentIndemnity,
      "labels": [AdjustmentLabel],
      "lastUpdateDate": "2007-12-03T10:15:30Z",
      "legalEntities": AdjustmentLegalEntities,
      "lossDate": "2007-12-03T10:15:30Z",
      "lossLocation": Location,
      "lossNotice": LossNotice,
      "marketReferences": [MarketReference],
      "operation": Actor,
      "owner": Actor,
      "recommendations": {},
      "reportDate": "2007-12-03T10:15:30Z",
      "reporter": Actor,
      "reportingCurrency": "abc123",
      "reports": [AdjustmentReport],
      "stakeholderReferences": [StakeholderReference],
      "status": "abeyance",
      "statusHistory": [AdjustmentStatusChange],
      "transitions": [AdjustmentTransition],
      "unpublishedChanges": true,
      "zone": Zone
    }
  }
}

updateAdjustmentAirframeEngineMaintenanceCheck

Description

Update a Maintenance Check of an Adjustment Airframe Engine

Response

Returns an Adjustment!

Arguments
Name Description
data - UpdateAdjustmentAirframeEngineMaintenanceCheckInput!

Example

Query
mutation updateAdjustmentAirframeEngineMaintenanceCheck($data: UpdateAdjustmentAirframeEngineMaintenanceCheckInput!) {
  updateAdjustmentAirframeEngineMaintenanceCheck(data: $data) {
    actions {
      ...AdjustmentActionFragment
    }
    airframes {
      ...AdjustmentAirframeFragment
    }
    allocations {
      ...AdjustmentAllocationFragment
    }
    categories
    collaborators {
      ...ActorFragment
    }
    costsExpenses {
      ...AdjustmentCostsExpensesFragment
    }
    creationDate
    documents {
      ...FileMetadataFragment
    }
    executiveSummary
    expert {
      ...ActorFragment
    }
    fees {
      ...AdjustmentFeesFragment
    }
    flights {
      ...AdjustmentFlightFragment
    }
    id
    images {
      ...FileMetadataFragment
    }
    indemnity {
      ...AdjustmentIndemnityFragment
    }
    labels {
      ...AdjustmentLabelFragment
    }
    lastUpdateDate
    legalEntities {
      ...AdjustmentLegalEntitiesFragment
    }
    lossDate
    lossLocation {
      ...LocationFragment
    }
    lossNotice {
      ...LossNoticeFragment
    }
    marketReferences {
      ...MarketReferenceFragment
    }
    operation {
      ...ActorFragment
    }
    owner {
      ...ActorFragment
    }
    recommendations
    reportDate
    reporter {
      ...ActorFragment
    }
    reportingCurrency
    reports {
      ...AdjustmentReportFragment
    }
    stakeholderReferences {
      ...StakeholderReferenceFragment
    }
    status
    statusHistory {
      ...AdjustmentStatusChangeFragment
    }
    transitions {
      ...AdjustmentTransitionFragment
    }
    unpublishedChanges
    zone {
      ...ZoneFragment
    }
  }
}
Variables
{
  "data": UpdateAdjustmentAirframeEngineMaintenanceCheckInput
}
Response
{
  "data": {
    "updateAdjustmentAirframeEngineMaintenanceCheck": {
      "actions": [AdjustmentAction],
      "airframes": [AdjustmentAirframe],
      "allocations": [AdjustmentAllocation],
      "categories": ["aircraft_hull"],
      "collaborators": [Actor],
      "costsExpenses": AdjustmentCostsExpenses,
      "creationDate": "2007-12-03T10:15:30Z",
      "documents": [FileMetadata],
      "executiveSummary": {},
      "expert": Actor,
      "fees": AdjustmentFees,
      "flights": [AdjustmentFlight],
      "id": "xyz789",
      "images": [FileMetadata],
      "indemnity": AdjustmentIndemnity,
      "labels": [AdjustmentLabel],
      "lastUpdateDate": "2007-12-03T10:15:30Z",
      "legalEntities": AdjustmentLegalEntities,
      "lossDate": "2007-12-03T10:15:30Z",
      "lossLocation": Location,
      "lossNotice": LossNotice,
      "marketReferences": [MarketReference],
      "operation": Actor,
      "owner": Actor,
      "recommendations": {},
      "reportDate": "2007-12-03T10:15:30Z",
      "reporter": Actor,
      "reportingCurrency": "xyz789",
      "reports": [AdjustmentReport],
      "stakeholderReferences": [StakeholderReference],
      "status": "abeyance",
      "statusHistory": [AdjustmentStatusChange],
      "transitions": [AdjustmentTransition],
      "unpublishedChanges": false,
      "zone": Zone
    }
  }
}

updateAdjustmentAirframeEngineMaintenanceCheckNarrative

Description

Update the narrative of an Adjustment Airframe Engine Maintenance Check

Response

Returns an Adjustment!

Example

Query
mutation updateAdjustmentAirframeEngineMaintenanceCheckNarrative($data: UpdateAdjustmentAirframeEngineMaintenanceCheckNarrativeInput!) {
  updateAdjustmentAirframeEngineMaintenanceCheckNarrative(data: $data) {
    actions {
      ...AdjustmentActionFragment
    }
    airframes {
      ...AdjustmentAirframeFragment
    }
    allocations {
      ...AdjustmentAllocationFragment
    }
    categories
    collaborators {
      ...ActorFragment
    }
    costsExpenses {
      ...AdjustmentCostsExpensesFragment
    }
    creationDate
    documents {
      ...FileMetadataFragment
    }
    executiveSummary
    expert {
      ...ActorFragment
    }
    fees {
      ...AdjustmentFeesFragment
    }
    flights {
      ...AdjustmentFlightFragment
    }
    id
    images {
      ...FileMetadataFragment
    }
    indemnity {
      ...AdjustmentIndemnityFragment
    }
    labels {
      ...AdjustmentLabelFragment
    }
    lastUpdateDate
    legalEntities {
      ...AdjustmentLegalEntitiesFragment
    }
    lossDate
    lossLocation {
      ...LocationFragment
    }
    lossNotice {
      ...LossNoticeFragment
    }
    marketReferences {
      ...MarketReferenceFragment
    }
    operation {
      ...ActorFragment
    }
    owner {
      ...ActorFragment
    }
    recommendations
    reportDate
    reporter {
      ...ActorFragment
    }
    reportingCurrency
    reports {
      ...AdjustmentReportFragment
    }
    stakeholderReferences {
      ...StakeholderReferenceFragment
    }
    status
    statusHistory {
      ...AdjustmentStatusChangeFragment
    }
    transitions {
      ...AdjustmentTransitionFragment
    }
    unpublishedChanges
    zone {
      ...ZoneFragment
    }
  }
}
Variables
{
  "data": UpdateAdjustmentAirframeEngineMaintenanceCheckNarrativeInput
}
Response
{
  "data": {
    "updateAdjustmentAirframeEngineMaintenanceCheckNarrative": {
      "actions": [AdjustmentAction],
      "airframes": [AdjustmentAirframe],
      "allocations": [AdjustmentAllocation],
      "categories": ["aircraft_hull"],
      "collaborators": [Actor],
      "costsExpenses": AdjustmentCostsExpenses,
      "creationDate": "2007-12-03T10:15:30Z",
      "documents": [FileMetadata],
      "executiveSummary": {},
      "expert": Actor,
      "fees": AdjustmentFees,
      "flights": [AdjustmentFlight],
      "id": "xyz789",
      "images": [FileMetadata],
      "indemnity": AdjustmentIndemnity,
      "labels": [AdjustmentLabel],
      "lastUpdateDate": "2007-12-03T10:15:30Z",
      "legalEntities": AdjustmentLegalEntities,
      "lossDate": "2007-12-03T10:15:30Z",
      "lossLocation": Location,
      "lossNotice": LossNotice,
      "marketReferences": [MarketReference],
      "operation": Actor,
      "owner": Actor,
      "recommendations": {},
      "reportDate": "2007-12-03T10:15:30Z",
      "reporter": Actor,
      "reportingCurrency": "abc123",
      "reports": [AdjustmentReport],
      "stakeholderReferences": [StakeholderReference],
      "status": "abeyance",
      "statusHistory": [AdjustmentStatusChange],
      "transitions": [AdjustmentTransition],
      "unpublishedChanges": false,
      "zone": Zone
    }
  }
}

updateAdjustmentAirframeMaintenanceCheck

Description

Update a Maintenance Check of an Adjustment Airframe

Response

Returns an Adjustment!

Arguments
Name Description
data - UpdateAdjustmentAirframeMaintenanceCheckInput!

Example

Query
mutation updateAdjustmentAirframeMaintenanceCheck($data: UpdateAdjustmentAirframeMaintenanceCheckInput!) {
  updateAdjustmentAirframeMaintenanceCheck(data: $data) {
    actions {
      ...AdjustmentActionFragment
    }
    airframes {
      ...AdjustmentAirframeFragment
    }
    allocations {
      ...AdjustmentAllocationFragment
    }
    categories
    collaborators {
      ...ActorFragment
    }
    costsExpenses {
      ...AdjustmentCostsExpensesFragment
    }
    creationDate
    documents {
      ...FileMetadataFragment
    }
    executiveSummary
    expert {
      ...ActorFragment
    }
    fees {
      ...AdjustmentFeesFragment
    }
    flights {
      ...AdjustmentFlightFragment
    }
    id
    images {
      ...FileMetadataFragment
    }
    indemnity {
      ...AdjustmentIndemnityFragment
    }
    labels {
      ...AdjustmentLabelFragment
    }
    lastUpdateDate
    legalEntities {
      ...AdjustmentLegalEntitiesFragment
    }
    lossDate
    lossLocation {
      ...LocationFragment
    }
    lossNotice {
      ...LossNoticeFragment
    }
    marketReferences {
      ...MarketReferenceFragment
    }
    operation {
      ...ActorFragment
    }
    owner {
      ...ActorFragment
    }
    recommendations
    reportDate
    reporter {
      ...ActorFragment
    }
    reportingCurrency
    reports {
      ...AdjustmentReportFragment
    }
    stakeholderReferences {
      ...StakeholderReferenceFragment
    }
    status
    statusHistory {
      ...AdjustmentStatusChangeFragment
    }
    transitions {
      ...AdjustmentTransitionFragment
    }
    unpublishedChanges
    zone {
      ...ZoneFragment
    }
  }
}
Variables
{"data": UpdateAdjustmentAirframeMaintenanceCheckInput}
Response
{
  "data": {
    "updateAdjustmentAirframeMaintenanceCheck": {
      "actions": [AdjustmentAction],
      "airframes": [AdjustmentAirframe],
      "allocations": [AdjustmentAllocation],
      "categories": ["aircraft_hull"],
      "collaborators": [Actor],
      "costsExpenses": AdjustmentCostsExpenses,
      "creationDate": "2007-12-03T10:15:30Z",
      "documents": [FileMetadata],
      "executiveSummary": {},
      "expert": Actor,
      "fees": AdjustmentFees,
      "flights": [AdjustmentFlight],
      "id": "abc123",
      "images": [FileMetadata],
      "indemnity": AdjustmentIndemnity,
      "labels": [AdjustmentLabel],
      "lastUpdateDate": "2007-12-03T10:15:30Z",
      "legalEntities": AdjustmentLegalEntities,
      "lossDate": "2007-12-03T10:15:30Z",
      "lossLocation": Location,
      "lossNotice": LossNotice,
      "marketReferences": [MarketReference],
      "operation": Actor,
      "owner": Actor,
      "recommendations": {},
      "reportDate": "2007-12-03T10:15:30Z",
      "reporter": Actor,
      "reportingCurrency": "abc123",
      "reports": [AdjustmentReport],
      "stakeholderReferences": [StakeholderReference],
      "status": "abeyance",
      "statusHistory": [AdjustmentStatusChange],
      "transitions": [AdjustmentTransition],
      "unpublishedChanges": false,
      "zone": Zone
    }
  }
}

updateAdjustmentAirframeMaintenanceCheckNarrative

Description

Update the narrative of an Adjustment Airframe Maintenance Check

Response

Returns an Adjustment!

Example

Query
mutation updateAdjustmentAirframeMaintenanceCheckNarrative($data: UpdateAdjustmentAirframeMaintenanceCheckNarrativeInput!) {
  updateAdjustmentAirframeMaintenanceCheckNarrative(data: $data) {
    actions {
      ...AdjustmentActionFragment
    }
    airframes {
      ...AdjustmentAirframeFragment
    }
    allocations {
      ...AdjustmentAllocationFragment
    }
    categories
    collaborators {
      ...ActorFragment
    }
    costsExpenses {
      ...AdjustmentCostsExpensesFragment
    }
    creationDate
    documents {
      ...FileMetadataFragment
    }
    executiveSummary
    expert {
      ...ActorFragment
    }
    fees {
      ...AdjustmentFeesFragment
    }
    flights {
      ...AdjustmentFlightFragment
    }
    id
    images {
      ...FileMetadataFragment
    }
    indemnity {
      ...AdjustmentIndemnityFragment
    }
    labels {
      ...AdjustmentLabelFragment
    }
    lastUpdateDate
    legalEntities {
      ...AdjustmentLegalEntitiesFragment
    }
    lossDate
    lossLocation {
      ...LocationFragment
    }
    lossNotice {
      ...LossNoticeFragment
    }
    marketReferences {
      ...MarketReferenceFragment
    }
    operation {
      ...ActorFragment
    }
    owner {
      ...ActorFragment
    }
    recommendations
    reportDate
    reporter {
      ...ActorFragment
    }
    reportingCurrency
    reports {
      ...AdjustmentReportFragment
    }
    stakeholderReferences {
      ...StakeholderReferenceFragment
    }
    status
    statusHistory {
      ...AdjustmentStatusChangeFragment
    }
    transitions {
      ...AdjustmentTransitionFragment
    }
    unpublishedChanges
    zone {
      ...ZoneFragment
    }
  }
}
Variables
{
  "data": UpdateAdjustmentAirframeMaintenanceCheckNarrativeInput
}
Response
{
  "data": {
    "updateAdjustmentAirframeMaintenanceCheckNarrative": {
      "actions": [AdjustmentAction],
      "airframes": [AdjustmentAirframe],
      "allocations": [AdjustmentAllocation],
      "categories": ["aircraft_hull"],
      "collaborators": [Actor],
      "costsExpenses": AdjustmentCostsExpenses,
      "creationDate": "2007-12-03T10:15:30Z",
      "documents": [FileMetadata],
      "executiveSummary": {},
      "expert": Actor,
      "fees": AdjustmentFees,
      "flights": [AdjustmentFlight],
      "id": "abc123",
      "images": [FileMetadata],
      "indemnity": AdjustmentIndemnity,
      "labels": [AdjustmentLabel],
      "lastUpdateDate": "2007-12-03T10:15:30Z",
      "legalEntities": AdjustmentLegalEntities,
      "lossDate": "2007-12-03T10:15:30Z",
      "lossLocation": Location,
      "lossNotice": LossNotice,
      "marketReferences": [MarketReference],
      "operation": Actor,
      "owner": Actor,
      "recommendations": {},
      "reportDate": "2007-12-03T10:15:30Z",
      "reporter": Actor,
      "reportingCurrency": "abc123",
      "reports": [AdjustmentReport],
      "stakeholderReferences": [StakeholderReference],
      "status": "abeyance",
      "statusHistory": [AdjustmentStatusChange],
      "transitions": [AdjustmentTransition],
      "unpublishedChanges": false,
      "zone": Zone
    }
  }
}

updateAdjustmentAirframeNarrative

Description

Update the narrative of an Adjustment Airframe

Response

Returns an Adjustment!

Arguments
Name Description
data - UpdateAdjustmentAirframeNarrativeInput!

Example

Query
mutation updateAdjustmentAirframeNarrative($data: UpdateAdjustmentAirframeNarrativeInput!) {
  updateAdjustmentAirframeNarrative(data: $data) {
    actions {
      ...AdjustmentActionFragment
    }
    airframes {
      ...AdjustmentAirframeFragment
    }
    allocations {
      ...AdjustmentAllocationFragment
    }
    categories
    collaborators {
      ...ActorFragment
    }
    costsExpenses {
      ...AdjustmentCostsExpensesFragment
    }
    creationDate
    documents {
      ...FileMetadataFragment
    }
    executiveSummary
    expert {
      ...ActorFragment
    }
    fees {
      ...AdjustmentFeesFragment
    }
    flights {
      ...AdjustmentFlightFragment
    }
    id
    images {
      ...FileMetadataFragment
    }
    indemnity {
      ...AdjustmentIndemnityFragment
    }
    labels {
      ...AdjustmentLabelFragment
    }
    lastUpdateDate
    legalEntities {
      ...AdjustmentLegalEntitiesFragment
    }
    lossDate
    lossLocation {
      ...LocationFragment
    }
    lossNotice {
      ...LossNoticeFragment
    }
    marketReferences {
      ...MarketReferenceFragment
    }
    operation {
      ...ActorFragment
    }
    owner {
      ...ActorFragment
    }
    recommendations
    reportDate
    reporter {
      ...ActorFragment
    }
    reportingCurrency
    reports {
      ...AdjustmentReportFragment
    }
    stakeholderReferences {
      ...StakeholderReferenceFragment
    }
    status
    statusHistory {
      ...AdjustmentStatusChangeFragment
    }
    transitions {
      ...AdjustmentTransitionFragment
    }
    unpublishedChanges
    zone {
      ...ZoneFragment
    }
  }
}
Variables
{"data": UpdateAdjustmentAirframeNarrativeInput}
Response
{
  "data": {
    "updateAdjustmentAirframeNarrative": {
      "actions": [AdjustmentAction],
      "airframes": [AdjustmentAirframe],
      "allocations": [AdjustmentAllocation],
      "categories": ["aircraft_hull"],
      "collaborators": [Actor],
      "costsExpenses": AdjustmentCostsExpenses,
      "creationDate": "2007-12-03T10:15:30Z",
      "documents": [FileMetadata],
      "executiveSummary": {},
      "expert": Actor,
      "fees": AdjustmentFees,
      "flights": [AdjustmentFlight],
      "id": "xyz789",
      "images": [FileMetadata],
      "indemnity": AdjustmentIndemnity,
      "labels": [AdjustmentLabel],
      "lastUpdateDate": "2007-12-03T10:15:30Z",
      "legalEntities": AdjustmentLegalEntities,
      "lossDate": "2007-12-03T10:15:30Z",
      "lossLocation": Location,
      "lossNotice": LossNotice,
      "marketReferences": [MarketReference],
      "operation": Actor,
      "owner": Actor,
      "recommendations": {},
      "reportDate": "2007-12-03T10:15:30Z",
      "reporter": Actor,
      "reportingCurrency": "abc123",
      "reports": [AdjustmentReport],
      "stakeholderReferences": [StakeholderReference],
      "status": "abeyance",
      "statusHistory": [AdjustmentStatusChange],
      "transitions": [AdjustmentTransition],
      "unpublishedChanges": false,
      "zone": Zone
    }
  }
}

updateAdjustmentAirframeOccurrence

Description

Update the Occurrence of an Adjustment Airframe

Response

Returns an Adjustment!

Arguments
Name Description
data - UpdateAdjustmentAirframeOccurrenceInput!

Example

Query
mutation updateAdjustmentAirframeOccurrence($data: UpdateAdjustmentAirframeOccurrenceInput!) {
  updateAdjustmentAirframeOccurrence(data: $data) {
    actions {
      ...AdjustmentActionFragment
    }
    airframes {
      ...AdjustmentAirframeFragment
    }
    allocations {
      ...AdjustmentAllocationFragment
    }
    categories
    collaborators {
      ...ActorFragment
    }
    costsExpenses {
      ...AdjustmentCostsExpensesFragment
    }
    creationDate
    documents {
      ...FileMetadataFragment
    }
    executiveSummary
    expert {
      ...ActorFragment
    }
    fees {
      ...AdjustmentFeesFragment
    }
    flights {
      ...AdjustmentFlightFragment
    }
    id
    images {
      ...FileMetadataFragment
    }
    indemnity {
      ...AdjustmentIndemnityFragment
    }
    labels {
      ...AdjustmentLabelFragment
    }
    lastUpdateDate
    legalEntities {
      ...AdjustmentLegalEntitiesFragment
    }
    lossDate
    lossLocation {
      ...LocationFragment
    }
    lossNotice {
      ...LossNoticeFragment
    }
    marketReferences {
      ...MarketReferenceFragment
    }
    operation {
      ...ActorFragment
    }
    owner {
      ...ActorFragment
    }
    recommendations
    reportDate
    reporter {
      ...ActorFragment
    }
    reportingCurrency
    reports {
      ...AdjustmentReportFragment
    }
    stakeholderReferences {
      ...StakeholderReferenceFragment
    }
    status
    statusHistory {
      ...AdjustmentStatusChangeFragment
    }
    transitions {
      ...AdjustmentTransitionFragment
    }
    unpublishedChanges
    zone {
      ...ZoneFragment
    }
  }
}
Variables
{"data": UpdateAdjustmentAirframeOccurrenceInput}
Response
{
  "data": {
    "updateAdjustmentAirframeOccurrence": {
      "actions": [AdjustmentAction],
      "airframes": [AdjustmentAirframe],
      "allocations": [AdjustmentAllocation],
      "categories": ["aircraft_hull"],
      "collaborators": [Actor],
      "costsExpenses": AdjustmentCostsExpenses,
      "creationDate": "2007-12-03T10:15:30Z",
      "documents": [FileMetadata],
      "executiveSummary": {},
      "expert": Actor,
      "fees": AdjustmentFees,
      "flights": [AdjustmentFlight],
      "id": "xyz789",
      "images": [FileMetadata],
      "indemnity": AdjustmentIndemnity,
      "labels": [AdjustmentLabel],
      "lastUpdateDate": "2007-12-03T10:15:30Z",
      "legalEntities": AdjustmentLegalEntities,
      "lossDate": "2007-12-03T10:15:30Z",
      "lossLocation": Location,
      "lossNotice": LossNotice,
      "marketReferences": [MarketReference],
      "operation": Actor,
      "owner": Actor,
      "recommendations": {},
      "reportDate": "2007-12-03T10:15:30Z",
      "reporter": Actor,
      "reportingCurrency": "xyz789",
      "reports": [AdjustmentReport],
      "stakeholderReferences": [StakeholderReference],
      "status": "abeyance",
      "statusHistory": [AdjustmentStatusChange],
      "transitions": [AdjustmentTransition],
      "unpublishedChanges": false,
      "zone": Zone
    }
  }
}

updateAdjustmentAirframePartDamage

Description

Update the Damage of an Adjustment Airframe Part

Response

Returns an Adjustment!

Arguments
Name Description
data - UpdateAdjustmentAirframePartDamageInput!

Example

Query
mutation updateAdjustmentAirframePartDamage($data: UpdateAdjustmentAirframePartDamageInput!) {
  updateAdjustmentAirframePartDamage(data: $data) {
    actions {
      ...AdjustmentActionFragment
    }
    airframes {
      ...AdjustmentAirframeFragment
    }
    allocations {
      ...AdjustmentAllocationFragment
    }
    categories
    collaborators {
      ...ActorFragment
    }
    costsExpenses {
      ...AdjustmentCostsExpensesFragment
    }
    creationDate
    documents {
      ...FileMetadataFragment
    }
    executiveSummary
    expert {
      ...ActorFragment
    }
    fees {
      ...AdjustmentFeesFragment
    }
    flights {
      ...AdjustmentFlightFragment
    }
    id
    images {
      ...FileMetadataFragment
    }
    indemnity {
      ...AdjustmentIndemnityFragment
    }
    labels {
      ...AdjustmentLabelFragment
    }
    lastUpdateDate
    legalEntities {
      ...AdjustmentLegalEntitiesFragment
    }
    lossDate
    lossLocation {
      ...LocationFragment
    }
    lossNotice {
      ...LossNoticeFragment
    }
    marketReferences {
      ...MarketReferenceFragment
    }
    operation {
      ...ActorFragment
    }
    owner {
      ...ActorFragment
    }
    recommendations
    reportDate
    reporter {
      ...ActorFragment
    }
    reportingCurrency
    reports {
      ...AdjustmentReportFragment
    }
    stakeholderReferences {
      ...StakeholderReferenceFragment
    }
    status
    statusHistory {
      ...AdjustmentStatusChangeFragment
    }
    transitions {
      ...AdjustmentTransitionFragment
    }
    unpublishedChanges
    zone {
      ...ZoneFragment
    }
  }
}
Variables
{"data": UpdateAdjustmentAirframePartDamageInput}
Response
{
  "data": {
    "updateAdjustmentAirframePartDamage": {
      "actions": [AdjustmentAction],
      "airframes": [AdjustmentAirframe],
      "allocations": [AdjustmentAllocation],
      "categories": ["aircraft_hull"],
      "collaborators": [Actor],
      "costsExpenses": AdjustmentCostsExpenses,
      "creationDate": "2007-12-03T10:15:30Z",
      "documents": [FileMetadata],
      "executiveSummary": {},
      "expert": Actor,
      "fees": AdjustmentFees,
      "flights": [AdjustmentFlight],
      "id": "xyz789",
      "images": [FileMetadata],
      "indemnity": AdjustmentIndemnity,
      "labels": [AdjustmentLabel],
      "lastUpdateDate": "2007-12-03T10:15:30Z",
      "legalEntities": AdjustmentLegalEntities,
      "lossDate": "2007-12-03T10:15:30Z",
      "lossLocation": Location,
      "lossNotice": LossNotice,
      "marketReferences": [MarketReference],
      "operation": Actor,
      "owner": Actor,
      "recommendations": {},
      "reportDate": "2007-12-03T10:15:30Z",
      "reporter": Actor,
      "reportingCurrency": "abc123",
      "reports": [AdjustmentReport],
      "stakeholderReferences": [StakeholderReference],
      "status": "abeyance",
      "statusHistory": [AdjustmentStatusChange],
      "transitions": [AdjustmentTransition],
      "unpublishedChanges": true,
      "zone": Zone
    }
  }
}

updateAdjustmentAirframePartDamageNarrative

Description

Update the Damage narrative of an Adjustment Airframe Part

Response

Returns an Adjustment!

Arguments
Name Description
data - UpdateAdjustmentAirframePartDamageNarrativeInput!

Example

Query
mutation updateAdjustmentAirframePartDamageNarrative($data: UpdateAdjustmentAirframePartDamageNarrativeInput!) {
  updateAdjustmentAirframePartDamageNarrative(data: $data) {
    actions {
      ...AdjustmentActionFragment
    }
    airframes {
      ...AdjustmentAirframeFragment
    }
    allocations {
      ...AdjustmentAllocationFragment
    }
    categories
    collaborators {
      ...ActorFragment
    }
    costsExpenses {
      ...AdjustmentCostsExpensesFragment
    }
    creationDate
    documents {
      ...FileMetadataFragment
    }
    executiveSummary
    expert {
      ...ActorFragment
    }
    fees {
      ...AdjustmentFeesFragment
    }
    flights {
      ...AdjustmentFlightFragment
    }
    id
    images {
      ...FileMetadataFragment
    }
    indemnity {
      ...AdjustmentIndemnityFragment
    }
    labels {
      ...AdjustmentLabelFragment
    }
    lastUpdateDate
    legalEntities {
      ...AdjustmentLegalEntitiesFragment
    }
    lossDate
    lossLocation {
      ...LocationFragment
    }
    lossNotice {
      ...LossNoticeFragment
    }
    marketReferences {
      ...MarketReferenceFragment
    }
    operation {
      ...ActorFragment
    }
    owner {
      ...ActorFragment
    }
    recommendations
    reportDate
    reporter {
      ...ActorFragment
    }
    reportingCurrency
    reports {
      ...AdjustmentReportFragment
    }
    stakeholderReferences {
      ...StakeholderReferenceFragment
    }
    status
    statusHistory {
      ...AdjustmentStatusChangeFragment
    }
    transitions {
      ...AdjustmentTransitionFragment
    }
    unpublishedChanges
    zone {
      ...ZoneFragment
    }
  }
}
Variables
{"data": UpdateAdjustmentAirframePartDamageNarrativeInput}
Response
{
  "data": {
    "updateAdjustmentAirframePartDamageNarrative": {
      "actions": [AdjustmentAction],
      "airframes": [AdjustmentAirframe],
      "allocations": [AdjustmentAllocation],
      "categories": ["aircraft_hull"],
      "collaborators": [Actor],
      "costsExpenses": AdjustmentCostsExpenses,
      "creationDate": "2007-12-03T10:15:30Z",
      "documents": [FileMetadata],
      "executiveSummary": {},
      "expert": Actor,
      "fees": AdjustmentFees,
      "flights": [AdjustmentFlight],
      "id": "abc123",
      "images": [FileMetadata],
      "indemnity": AdjustmentIndemnity,
      "labels": [AdjustmentLabel],
      "lastUpdateDate": "2007-12-03T10:15:30Z",
      "legalEntities": AdjustmentLegalEntities,
      "lossDate": "2007-12-03T10:15:30Z",
      "lossLocation": Location,
      "lossNotice": LossNotice,
      "marketReferences": [MarketReference],
      "operation": Actor,
      "owner": Actor,
      "recommendations": {},
      "reportDate": "2007-12-03T10:15:30Z",
      "reporter": Actor,
      "reportingCurrency": "xyz789",
      "reports": [AdjustmentReport],
      "stakeholderReferences": [StakeholderReference],
      "status": "abeyance",
      "statusHistory": [AdjustmentStatusChange],
      "transitions": [AdjustmentTransition],
      "unpublishedChanges": false,
      "zone": Zone
    }
  }
}

updateAdjustmentAirframeWorkload

Description

Update the Workload of an Adjustment Airframe

Response

Returns an Adjustment!

Arguments
Name Description
data - UpdateAdjustmentAirframeWorkloadInput!

Example

Query
mutation updateAdjustmentAirframeWorkload($data: UpdateAdjustmentAirframeWorkloadInput!) {
  updateAdjustmentAirframeWorkload(data: $data) {
    actions {
      ...AdjustmentActionFragment
    }
    airframes {
      ...AdjustmentAirframeFragment
    }
    allocations {
      ...AdjustmentAllocationFragment
    }
    categories
    collaborators {
      ...ActorFragment
    }
    costsExpenses {
      ...AdjustmentCostsExpensesFragment
    }
    creationDate
    documents {
      ...FileMetadataFragment
    }
    executiveSummary
    expert {
      ...ActorFragment
    }
    fees {
      ...AdjustmentFeesFragment
    }
    flights {
      ...AdjustmentFlightFragment
    }
    id
    images {
      ...FileMetadataFragment
    }
    indemnity {
      ...AdjustmentIndemnityFragment
    }
    labels {
      ...AdjustmentLabelFragment
    }
    lastUpdateDate
    legalEntities {
      ...AdjustmentLegalEntitiesFragment
    }
    lossDate
    lossLocation {
      ...LocationFragment
    }
    lossNotice {
      ...LossNoticeFragment
    }
    marketReferences {
      ...MarketReferenceFragment
    }
    operation {
      ...ActorFragment
    }
    owner {
      ...ActorFragment
    }
    recommendations
    reportDate
    reporter {
      ...ActorFragment
    }
    reportingCurrency
    reports {
      ...AdjustmentReportFragment
    }
    stakeholderReferences {
      ...StakeholderReferenceFragment
    }
    status
    statusHistory {
      ...AdjustmentStatusChangeFragment
    }
    transitions {
      ...AdjustmentTransitionFragment
    }
    unpublishedChanges
    zone {
      ...ZoneFragment
    }
  }
}
Variables
{"data": UpdateAdjustmentAirframeWorkloadInput}
Response
{
  "data": {
    "updateAdjustmentAirframeWorkload": {
      "actions": [AdjustmentAction],
      "airframes": [AdjustmentAirframe],
      "allocations": [AdjustmentAllocation],
      "categories": ["aircraft_hull"],
      "collaborators": [Actor],
      "costsExpenses": AdjustmentCostsExpenses,
      "creationDate": "2007-12-03T10:15:30Z",
      "documents": [FileMetadata],
      "executiveSummary": {},
      "expert": Actor,
      "fees": AdjustmentFees,
      "flights": [AdjustmentFlight],
      "id": "abc123",
      "images": [FileMetadata],
      "indemnity": AdjustmentIndemnity,
      "labels": [AdjustmentLabel],
      "lastUpdateDate": "2007-12-03T10:15:30Z",
      "legalEntities": AdjustmentLegalEntities,
      "lossDate": "2007-12-03T10:15:30Z",
      "lossLocation": Location,
      "lossNotice": LossNotice,
      "marketReferences": [MarketReference],
      "operation": Actor,
      "owner": Actor,
      "recommendations": {},
      "reportDate": "2007-12-03T10:15:30Z",
      "reporter": Actor,
      "reportingCurrency": "xyz789",
      "reports": [AdjustmentReport],
      "stakeholderReferences": [StakeholderReference],
      "status": "abeyance",
      "statusHistory": [AdjustmentStatusChange],
      "transitions": [AdjustmentTransition],
      "unpublishedChanges": true,
      "zone": Zone
    }
  }
}

updateAdjustmentCollaborator

Description

Update a Collaborator of an Adjustment

Response

Returns an Adjustment!

Arguments
Name Description
data - UpdateAdjustmentCollaboratorInput!

Example

Query
mutation updateAdjustmentCollaborator($data: UpdateAdjustmentCollaboratorInput!) {
  updateAdjustmentCollaborator(data: $data) {
    actions {
      ...AdjustmentActionFragment
    }
    airframes {
      ...AdjustmentAirframeFragment
    }
    allocations {
      ...AdjustmentAllocationFragment
    }
    categories
    collaborators {
      ...ActorFragment
    }
    costsExpenses {
      ...AdjustmentCostsExpensesFragment
    }
    creationDate
    documents {
      ...FileMetadataFragment
    }
    executiveSummary
    expert {
      ...ActorFragment
    }
    fees {
      ...AdjustmentFeesFragment
    }
    flights {
      ...AdjustmentFlightFragment
    }
    id
    images {
      ...FileMetadataFragment
    }
    indemnity {
      ...AdjustmentIndemnityFragment
    }
    labels {
      ...AdjustmentLabelFragment
    }
    lastUpdateDate
    legalEntities {
      ...AdjustmentLegalEntitiesFragment
    }
    lossDate
    lossLocation {
      ...LocationFragment
    }
    lossNotice {
      ...LossNoticeFragment
    }
    marketReferences {
      ...MarketReferenceFragment
    }
    operation {
      ...ActorFragment
    }
    owner {
      ...ActorFragment
    }
    recommendations
    reportDate
    reporter {
      ...ActorFragment
    }
    reportingCurrency
    reports {
      ...AdjustmentReportFragment
    }
    stakeholderReferences {
      ...StakeholderReferenceFragment
    }
    status
    statusHistory {
      ...AdjustmentStatusChangeFragment
    }
    transitions {
      ...AdjustmentTransitionFragment
    }
    unpublishedChanges
    zone {
      ...ZoneFragment
    }
  }
}
Variables
{"data": UpdateAdjustmentCollaboratorInput}
Response
{
  "data": {
    "updateAdjustmentCollaborator": {
      "actions": [AdjustmentAction],
      "airframes": [AdjustmentAirframe],
      "allocations": [AdjustmentAllocation],
      "categories": ["aircraft_hull"],
      "collaborators": [Actor],
      "costsExpenses": AdjustmentCostsExpenses,
      "creationDate": "2007-12-03T10:15:30Z",
      "documents": [FileMetadata],
      "executiveSummary": {},
      "expert": Actor,
      "fees": AdjustmentFees,
      "flights": [AdjustmentFlight],
      "id": "abc123",
      "images": [FileMetadata],
      "indemnity": AdjustmentIndemnity,
      "labels": [AdjustmentLabel],
      "lastUpdateDate": "2007-12-03T10:15:30Z",
      "legalEntities": AdjustmentLegalEntities,
      "lossDate": "2007-12-03T10:15:30Z",
      "lossLocation": Location,
      "lossNotice": LossNotice,
      "marketReferences": [MarketReference],
      "operation": Actor,
      "owner": Actor,
      "recommendations": {},
      "reportDate": "2007-12-03T10:15:30Z",
      "reporter": Actor,
      "reportingCurrency": "xyz789",
      "reports": [AdjustmentReport],
      "stakeholderReferences": [StakeholderReference],
      "status": "abeyance",
      "statusHistory": [AdjustmentStatusChange],
      "transitions": [AdjustmentTransition],
      "unpublishedChanges": true,
      "zone": Zone
    }
  }
}

updateAdjustmentCostExpensePayment

Description

Update an Adjustment Payment/Disbursement

Response

Returns an Adjustment!

Arguments
Name Description
data - UpdateAdjustmentCostExpensePaymentInput!

Example

Query
mutation updateAdjustmentCostExpensePayment($data: UpdateAdjustmentCostExpensePaymentInput!) {
  updateAdjustmentCostExpensePayment(data: $data) {
    actions {
      ...AdjustmentActionFragment
    }
    airframes {
      ...AdjustmentAirframeFragment
    }
    allocations {
      ...AdjustmentAllocationFragment
    }
    categories
    collaborators {
      ...ActorFragment
    }
    costsExpenses {
      ...AdjustmentCostsExpensesFragment
    }
    creationDate
    documents {
      ...FileMetadataFragment
    }
    executiveSummary
    expert {
      ...ActorFragment
    }
    fees {
      ...AdjustmentFeesFragment
    }
    flights {
      ...AdjustmentFlightFragment
    }
    id
    images {
      ...FileMetadataFragment
    }
    indemnity {
      ...AdjustmentIndemnityFragment
    }
    labels {
      ...AdjustmentLabelFragment
    }
    lastUpdateDate
    legalEntities {
      ...AdjustmentLegalEntitiesFragment
    }
    lossDate
    lossLocation {
      ...LocationFragment
    }
    lossNotice {
      ...LossNoticeFragment
    }
    marketReferences {
      ...MarketReferenceFragment
    }
    operation {
      ...ActorFragment
    }
    owner {
      ...ActorFragment
    }
    recommendations
    reportDate
    reporter {
      ...ActorFragment
    }
    reportingCurrency
    reports {
      ...AdjustmentReportFragment
    }
    stakeholderReferences {
      ...StakeholderReferenceFragment
    }
    status
    statusHistory {
      ...AdjustmentStatusChangeFragment
    }
    transitions {
      ...AdjustmentTransitionFragment
    }
    unpublishedChanges
    zone {
      ...ZoneFragment
    }
  }
}
Variables
{"data": UpdateAdjustmentCostExpensePaymentInput}
Response
{
  "data": {
    "updateAdjustmentCostExpensePayment": {
      "actions": [AdjustmentAction],
      "airframes": [AdjustmentAirframe],
      "allocations": [AdjustmentAllocation],
      "categories": ["aircraft_hull"],
      "collaborators": [Actor],
      "costsExpenses": AdjustmentCostsExpenses,
      "creationDate": "2007-12-03T10:15:30Z",
      "documents": [FileMetadata],
      "executiveSummary": {},
      "expert": Actor,
      "fees": AdjustmentFees,
      "flights": [AdjustmentFlight],
      "id": "abc123",
      "images": [FileMetadata],
      "indemnity": AdjustmentIndemnity,
      "labels": [AdjustmentLabel],
      "lastUpdateDate": "2007-12-03T10:15:30Z",
      "legalEntities": AdjustmentLegalEntities,
      "lossDate": "2007-12-03T10:15:30Z",
      "lossLocation": Location,
      "lossNotice": LossNotice,
      "marketReferences": [MarketReference],
      "operation": Actor,
      "owner": Actor,
      "recommendations": {},
      "reportDate": "2007-12-03T10:15:30Z",
      "reporter": Actor,
      "reportingCurrency": "xyz789",
      "reports": [AdjustmentReport],
      "stakeholderReferences": [StakeholderReference],
      "status": "abeyance",
      "statusHistory": [AdjustmentStatusChange],
      "transitions": [AdjustmentTransition],
      "unpublishedChanges": true,
      "zone": Zone
    }
  }
}

updateAdjustmentCostExpensePaymentNarrative

Description

Update the narrative of an Adjustment Payment/Disbursement

Response

Returns an Adjustment!

Arguments
Name Description
data - UpdateAdjustmentPaymentNarrativeInput!

Example

Query
mutation updateAdjustmentCostExpensePaymentNarrative($data: UpdateAdjustmentPaymentNarrativeInput!) {
  updateAdjustmentCostExpensePaymentNarrative(data: $data) {
    actions {
      ...AdjustmentActionFragment
    }
    airframes {
      ...AdjustmentAirframeFragment
    }
    allocations {
      ...AdjustmentAllocationFragment
    }
    categories
    collaborators {
      ...ActorFragment
    }
    costsExpenses {
      ...AdjustmentCostsExpensesFragment
    }
    creationDate
    documents {
      ...FileMetadataFragment
    }
    executiveSummary
    expert {
      ...ActorFragment
    }
    fees {
      ...AdjustmentFeesFragment
    }
    flights {
      ...AdjustmentFlightFragment
    }
    id
    images {
      ...FileMetadataFragment
    }
    indemnity {
      ...AdjustmentIndemnityFragment
    }
    labels {
      ...AdjustmentLabelFragment
    }
    lastUpdateDate
    legalEntities {
      ...AdjustmentLegalEntitiesFragment
    }
    lossDate
    lossLocation {
      ...LocationFragment
    }
    lossNotice {
      ...LossNoticeFragment
    }
    marketReferences {
      ...MarketReferenceFragment
    }
    operation {
      ...ActorFragment
    }
    owner {
      ...ActorFragment
    }
    recommendations
    reportDate
    reporter {
      ...ActorFragment
    }
    reportingCurrency
    reports {
      ...AdjustmentReportFragment
    }
    stakeholderReferences {
      ...StakeholderReferenceFragment
    }
    status
    statusHistory {
      ...AdjustmentStatusChangeFragment
    }
    transitions {
      ...AdjustmentTransitionFragment
    }
    unpublishedChanges
    zone {
      ...ZoneFragment
    }
  }
}
Variables
{"data": UpdateAdjustmentPaymentNarrativeInput}
Response
{
  "data": {
    "updateAdjustmentCostExpensePaymentNarrative": {
      "actions": [AdjustmentAction],
      "airframes": [AdjustmentAirframe],
      "allocations": [AdjustmentAllocation],
      "categories": ["aircraft_hull"],
      "collaborators": [Actor],
      "costsExpenses": AdjustmentCostsExpenses,
      "creationDate": "2007-12-03T10:15:30Z",
      "documents": [FileMetadata],
      "executiveSummary": {},
      "expert": Actor,
      "fees": AdjustmentFees,
      "flights": [AdjustmentFlight],
      "id": "xyz789",
      "images": [FileMetadata],
      "indemnity": AdjustmentIndemnity,
      "labels": [AdjustmentLabel],
      "lastUpdateDate": "2007-12-03T10:15:30Z",
      "legalEntities": AdjustmentLegalEntities,
      "lossDate": "2007-12-03T10:15:30Z",
      "lossLocation": Location,
      "lossNotice": LossNotice,
      "marketReferences": [MarketReference],
      "operation": Actor,
      "owner": Actor,
      "recommendations": {},
      "reportDate": "2007-12-03T10:15:30Z",
      "reporter": Actor,
      "reportingCurrency": "xyz789",
      "reports": [AdjustmentReport],
      "stakeholderReferences": [StakeholderReference],
      "status": "abeyance",
      "statusHistory": [AdjustmentStatusChange],
      "transitions": [AdjustmentTransition],
      "unpublishedChanges": true,
      "zone": Zone
    }
  }
}

updateAdjustmentCostExpenseReserve

Description

Update an Adjustment Cost & Expense Reserve

Response

Returns an Adjustment!

Arguments
Name Description
data - UpdateAdjustmentCostExpenseReserveInput!

Example

Query
mutation updateAdjustmentCostExpenseReserve($data: UpdateAdjustmentCostExpenseReserveInput!) {
  updateAdjustmentCostExpenseReserve(data: $data) {
    actions {
      ...AdjustmentActionFragment
    }
    airframes {
      ...AdjustmentAirframeFragment
    }
    allocations {
      ...AdjustmentAllocationFragment
    }
    categories
    collaborators {
      ...ActorFragment
    }
    costsExpenses {
      ...AdjustmentCostsExpensesFragment
    }
    creationDate
    documents {
      ...FileMetadataFragment
    }
    executiveSummary
    expert {
      ...ActorFragment
    }
    fees {
      ...AdjustmentFeesFragment
    }
    flights {
      ...AdjustmentFlightFragment
    }
    id
    images {
      ...FileMetadataFragment
    }
    indemnity {
      ...AdjustmentIndemnityFragment
    }
    labels {
      ...AdjustmentLabelFragment
    }
    lastUpdateDate
    legalEntities {
      ...AdjustmentLegalEntitiesFragment
    }
    lossDate
    lossLocation {
      ...LocationFragment
    }
    lossNotice {
      ...LossNoticeFragment
    }
    marketReferences {
      ...MarketReferenceFragment
    }
    operation {
      ...ActorFragment
    }
    owner {
      ...ActorFragment
    }
    recommendations
    reportDate
    reporter {
      ...ActorFragment
    }
    reportingCurrency
    reports {
      ...AdjustmentReportFragment
    }
    stakeholderReferences {
      ...StakeholderReferenceFragment
    }
    status
    statusHistory {
      ...AdjustmentStatusChangeFragment
    }
    transitions {
      ...AdjustmentTransitionFragment
    }
    unpublishedChanges
    zone {
      ...ZoneFragment
    }
  }
}
Variables
{"data": UpdateAdjustmentCostExpenseReserveInput}
Response
{
  "data": {
    "updateAdjustmentCostExpenseReserve": {
      "actions": [AdjustmentAction],
      "airframes": [AdjustmentAirframe],
      "allocations": [AdjustmentAllocation],
      "categories": ["aircraft_hull"],
      "collaborators": [Actor],
      "costsExpenses": AdjustmentCostsExpenses,
      "creationDate": "2007-12-03T10:15:30Z",
      "documents": [FileMetadata],
      "executiveSummary": {},
      "expert": Actor,
      "fees": AdjustmentFees,
      "flights": [AdjustmentFlight],
      "id": "abc123",
      "images": [FileMetadata],
      "indemnity": AdjustmentIndemnity,
      "labels": [AdjustmentLabel],
      "lastUpdateDate": "2007-12-03T10:15:30Z",
      "legalEntities": AdjustmentLegalEntities,
      "lossDate": "2007-12-03T10:15:30Z",
      "lossLocation": Location,
      "lossNotice": LossNotice,
      "marketReferences": [MarketReference],
      "operation": Actor,
      "owner": Actor,
      "recommendations": {},
      "reportDate": "2007-12-03T10:15:30Z",
      "reporter": Actor,
      "reportingCurrency": "abc123",
      "reports": [AdjustmentReport],
      "stakeholderReferences": [StakeholderReference],
      "status": "abeyance",
      "statusHistory": [AdjustmentStatusChange],
      "transitions": [AdjustmentTransition],
      "unpublishedChanges": true,
      "zone": Zone
    }
  }
}

updateAdjustmentCostExpenseReserveNarrative

Description

Update the narrative of an Adjustment Cost & Expense Reserve

Response

Returns an Adjustment!

Arguments
Name Description
data - UpdateAdjustmentReserveNarrativeInput!

Example

Query
mutation updateAdjustmentCostExpenseReserveNarrative($data: UpdateAdjustmentReserveNarrativeInput!) {
  updateAdjustmentCostExpenseReserveNarrative(data: $data) {
    actions {
      ...AdjustmentActionFragment
    }
    airframes {
      ...AdjustmentAirframeFragment
    }
    allocations {
      ...AdjustmentAllocationFragment
    }
    categories
    collaborators {
      ...ActorFragment
    }
    costsExpenses {
      ...AdjustmentCostsExpensesFragment
    }
    creationDate
    documents {
      ...FileMetadataFragment
    }
    executiveSummary
    expert {
      ...ActorFragment
    }
    fees {
      ...AdjustmentFeesFragment
    }
    flights {
      ...AdjustmentFlightFragment
    }
    id
    images {
      ...FileMetadataFragment
    }
    indemnity {
      ...AdjustmentIndemnityFragment
    }
    labels {
      ...AdjustmentLabelFragment
    }
    lastUpdateDate
    legalEntities {
      ...AdjustmentLegalEntitiesFragment
    }
    lossDate
    lossLocation {
      ...LocationFragment
    }
    lossNotice {
      ...LossNoticeFragment
    }
    marketReferences {
      ...MarketReferenceFragment
    }
    operation {
      ...ActorFragment
    }
    owner {
      ...ActorFragment
    }
    recommendations
    reportDate
    reporter {
      ...ActorFragment
    }
    reportingCurrency
    reports {
      ...AdjustmentReportFragment
    }
    stakeholderReferences {
      ...StakeholderReferenceFragment
    }
    status
    statusHistory {
      ...AdjustmentStatusChangeFragment
    }
    transitions {
      ...AdjustmentTransitionFragment
    }
    unpublishedChanges
    zone {
      ...ZoneFragment
    }
  }
}
Variables
{"data": UpdateAdjustmentReserveNarrativeInput}
Response
{
  "data": {
    "updateAdjustmentCostExpenseReserveNarrative": {
      "actions": [AdjustmentAction],
      "airframes": [AdjustmentAirframe],
      "allocations": [AdjustmentAllocation],
      "categories": ["aircraft_hull"],
      "collaborators": [Actor],
      "costsExpenses": AdjustmentCostsExpenses,
      "creationDate": "2007-12-03T10:15:30Z",
      "documents": [FileMetadata],
      "executiveSummary": {},
      "expert": Actor,
      "fees": AdjustmentFees,
      "flights": [AdjustmentFlight],
      "id": "xyz789",
      "images": [FileMetadata],
      "indemnity": AdjustmentIndemnity,
      "labels": [AdjustmentLabel],
      "lastUpdateDate": "2007-12-03T10:15:30Z",
      "legalEntities": AdjustmentLegalEntities,
      "lossDate": "2007-12-03T10:15:30Z",
      "lossLocation": Location,
      "lossNotice": LossNotice,
      "marketReferences": [MarketReference],
      "operation": Actor,
      "owner": Actor,
      "recommendations": {},
      "reportDate": "2007-12-03T10:15:30Z",
      "reporter": Actor,
      "reportingCurrency": "xyz789",
      "reports": [AdjustmentReport],
      "stakeholderReferences": [StakeholderReference],
      "status": "abeyance",
      "statusHistory": [AdjustmentStatusChange],
      "transitions": [AdjustmentTransition],
      "unpublishedChanges": true,
      "zone": Zone
    }
  }
}

updateAdjustmentDocumentMetadata

Response

Returns an Adjustment!

Arguments
Name Description
data - UpdateAdjustmentDocumentMetadataInput!

Example

Query
mutation updateAdjustmentDocumentMetadata($data: UpdateAdjustmentDocumentMetadataInput!) {
  updateAdjustmentDocumentMetadata(data: $data) {
    actions {
      ...AdjustmentActionFragment
    }
    airframes {
      ...AdjustmentAirframeFragment
    }
    allocations {
      ...AdjustmentAllocationFragment
    }
    categories
    collaborators {
      ...ActorFragment
    }
    costsExpenses {
      ...AdjustmentCostsExpensesFragment
    }
    creationDate
    documents {
      ...FileMetadataFragment
    }
    executiveSummary
    expert {
      ...ActorFragment
    }
    fees {
      ...AdjustmentFeesFragment
    }
    flights {
      ...AdjustmentFlightFragment
    }
    id
    images {
      ...FileMetadataFragment
    }
    indemnity {
      ...AdjustmentIndemnityFragment
    }
    labels {
      ...AdjustmentLabelFragment
    }
    lastUpdateDate
    legalEntities {
      ...AdjustmentLegalEntitiesFragment
    }
    lossDate
    lossLocation {
      ...LocationFragment
    }
    lossNotice {
      ...LossNoticeFragment
    }
    marketReferences {
      ...MarketReferenceFragment
    }
    operation {
      ...ActorFragment
    }
    owner {
      ...ActorFragment
    }
    recommendations
    reportDate
    reporter {
      ...ActorFragment
    }
    reportingCurrency
    reports {
      ...AdjustmentReportFragment
    }
    stakeholderReferences {
      ...StakeholderReferenceFragment
    }
    status
    statusHistory {
      ...AdjustmentStatusChangeFragment
    }
    transitions {
      ...AdjustmentTransitionFragment
    }
    unpublishedChanges
    zone {
      ...ZoneFragment
    }
  }
}
Variables
{"data": UpdateAdjustmentDocumentMetadataInput}
Response
{
  "data": {
    "updateAdjustmentDocumentMetadata": {
      "actions": [AdjustmentAction],
      "airframes": [AdjustmentAirframe],
      "allocations": [AdjustmentAllocation],
      "categories": ["aircraft_hull"],
      "collaborators": [Actor],
      "costsExpenses": AdjustmentCostsExpenses,
      "creationDate": "2007-12-03T10:15:30Z",
      "documents": [FileMetadata],
      "executiveSummary": {},
      "expert": Actor,
      "fees": AdjustmentFees,
      "flights": [AdjustmentFlight],
      "id": "abc123",
      "images": [FileMetadata],
      "indemnity": AdjustmentIndemnity,
      "labels": [AdjustmentLabel],
      "lastUpdateDate": "2007-12-03T10:15:30Z",
      "legalEntities": AdjustmentLegalEntities,
      "lossDate": "2007-12-03T10:15:30Z",
      "lossLocation": Location,
      "lossNotice": LossNotice,
      "marketReferences": [MarketReference],
      "operation": Actor,
      "owner": Actor,
      "recommendations": {},
      "reportDate": "2007-12-03T10:15:30Z",
      "reporter": Actor,
      "reportingCurrency": "xyz789",
      "reports": [AdjustmentReport],
      "stakeholderReferences": [StakeholderReference],
      "status": "abeyance",
      "statusHistory": [AdjustmentStatusChange],
      "transitions": [AdjustmentTransition],
      "unpublishedChanges": false,
      "zone": Zone
    }
  }
}

updateAdjustmentExecutiveSummary

Description

Update the Executive Summary of an Adjustment

Response

Returns an Adjustment!

Arguments
Name Description
data - UpdateAdjustmentExecutiveSummaryInput!

Example

Query
mutation updateAdjustmentExecutiveSummary($data: UpdateAdjustmentExecutiveSummaryInput!) {
  updateAdjustmentExecutiveSummary(data: $data) {
    actions {
      ...AdjustmentActionFragment
    }
    airframes {
      ...AdjustmentAirframeFragment
    }
    allocations {
      ...AdjustmentAllocationFragment
    }
    categories
    collaborators {
      ...ActorFragment
    }
    costsExpenses {
      ...AdjustmentCostsExpensesFragment
    }
    creationDate
    documents {
      ...FileMetadataFragment
    }
    executiveSummary
    expert {
      ...ActorFragment
    }
    fees {
      ...AdjustmentFeesFragment
    }
    flights {
      ...AdjustmentFlightFragment
    }
    id
    images {
      ...FileMetadataFragment
    }
    indemnity {
      ...AdjustmentIndemnityFragment
    }
    labels {
      ...AdjustmentLabelFragment
    }
    lastUpdateDate
    legalEntities {
      ...AdjustmentLegalEntitiesFragment
    }
    lossDate
    lossLocation {
      ...LocationFragment
    }
    lossNotice {
      ...LossNoticeFragment
    }
    marketReferences {
      ...MarketReferenceFragment
    }
    operation {
      ...ActorFragment
    }
    owner {
      ...ActorFragment
    }
    recommendations
    reportDate
    reporter {
      ...ActorFragment
    }
    reportingCurrency
    reports {
      ...AdjustmentReportFragment
    }
    stakeholderReferences {
      ...StakeholderReferenceFragment
    }
    status
    statusHistory {
      ...AdjustmentStatusChangeFragment
    }
    transitions {
      ...AdjustmentTransitionFragment
    }
    unpublishedChanges
    zone {
      ...ZoneFragment
    }
  }
}
Variables
{"data": UpdateAdjustmentExecutiveSummaryInput}
Response
{
  "data": {
    "updateAdjustmentExecutiveSummary": {
      "actions": [AdjustmentAction],
      "airframes": [AdjustmentAirframe],
      "allocations": [AdjustmentAllocation],
      "categories": ["aircraft_hull"],
      "collaborators": [Actor],
      "costsExpenses": AdjustmentCostsExpenses,
      "creationDate": "2007-12-03T10:15:30Z",
      "documents": [FileMetadata],
      "executiveSummary": {},
      "expert": Actor,
      "fees": AdjustmentFees,
      "flights": [AdjustmentFlight],
      "id": "abc123",
      "images": [FileMetadata],
      "indemnity": AdjustmentIndemnity,
      "labels": [AdjustmentLabel],
      "lastUpdateDate": "2007-12-03T10:15:30Z",
      "legalEntities": AdjustmentLegalEntities,
      "lossDate": "2007-12-03T10:15:30Z",
      "lossLocation": Location,
      "lossNotice": LossNotice,
      "marketReferences": [MarketReference],
      "operation": Actor,
      "owner": Actor,
      "recommendations": {},
      "reportDate": "2007-12-03T10:15:30Z",
      "reporter": Actor,
      "reportingCurrency": "abc123",
      "reports": [AdjustmentReport],
      "stakeholderReferences": [StakeholderReference],
      "status": "abeyance",
      "statusHistory": [AdjustmentStatusChange],
      "transitions": [AdjustmentTransition],
      "unpublishedChanges": false,
      "zone": Zone
    }
  }
}

updateAdjustmentExpert

Description

Update the Expert of an Adjustment

Response

Returns an Adjustment!

Arguments
Name Description
data - UpdateAdjustmentExpertInput!

Example

Query
mutation updateAdjustmentExpert($data: UpdateAdjustmentExpertInput!) {
  updateAdjustmentExpert(data: $data) {
    actions {
      ...AdjustmentActionFragment
    }
    airframes {
      ...AdjustmentAirframeFragment
    }
    allocations {
      ...AdjustmentAllocationFragment
    }
    categories
    collaborators {
      ...ActorFragment
    }
    costsExpenses {
      ...AdjustmentCostsExpensesFragment
    }
    creationDate
    documents {
      ...FileMetadataFragment
    }
    executiveSummary
    expert {
      ...ActorFragment
    }
    fees {
      ...AdjustmentFeesFragment
    }
    flights {
      ...AdjustmentFlightFragment
    }
    id
    images {
      ...FileMetadataFragment
    }
    indemnity {
      ...AdjustmentIndemnityFragment
    }
    labels {
      ...AdjustmentLabelFragment
    }
    lastUpdateDate
    legalEntities {
      ...AdjustmentLegalEntitiesFragment
    }
    lossDate
    lossLocation {
      ...LocationFragment
    }
    lossNotice {
      ...LossNoticeFragment
    }
    marketReferences {
      ...MarketReferenceFragment
    }
    operation {
      ...ActorFragment
    }
    owner {
      ...ActorFragment
    }
    recommendations
    reportDate
    reporter {
      ...ActorFragment
    }
    reportingCurrency
    reports {
      ...AdjustmentReportFragment
    }
    stakeholderReferences {
      ...StakeholderReferenceFragment
    }
    status
    statusHistory {
      ...AdjustmentStatusChangeFragment
    }
    transitions {
      ...AdjustmentTransitionFragment
    }
    unpublishedChanges
    zone {
      ...ZoneFragment
    }
  }
}
Variables
{"data": UpdateAdjustmentExpertInput}
Response
{
  "data": {
    "updateAdjustmentExpert": {
      "actions": [AdjustmentAction],
      "airframes": [AdjustmentAirframe],
      "allocations": [AdjustmentAllocation],
      "categories": ["aircraft_hull"],
      "collaborators": [Actor],
      "costsExpenses": AdjustmentCostsExpenses,
      "creationDate": "2007-12-03T10:15:30Z",
      "documents": [FileMetadata],
      "executiveSummary": {},
      "expert": Actor,
      "fees": AdjustmentFees,
      "flights": [AdjustmentFlight],
      "id": "abc123",
      "images": [FileMetadata],
      "indemnity": AdjustmentIndemnity,
      "labels": [AdjustmentLabel],
      "lastUpdateDate": "2007-12-03T10:15:30Z",
      "legalEntities": AdjustmentLegalEntities,
      "lossDate": "2007-12-03T10:15:30Z",
      "lossLocation": Location,
      "lossNotice": LossNotice,
      "marketReferences": [MarketReference],
      "operation": Actor,
      "owner": Actor,
      "recommendations": {},
      "reportDate": "2007-12-03T10:15:30Z",
      "reporter": Actor,
      "reportingCurrency": "xyz789",
      "reports": [AdjustmentReport],
      "stakeholderReferences": [StakeholderReference],
      "status": "abeyance",
      "statusHistory": [AdjustmentStatusChange],
      "transitions": [AdjustmentTransition],
      "unpublishedChanges": false,
      "zone": Zone
    }
  }
}

updateAdjustmentFeePayment

Description

Update an Adjustment Fee Payment/Disbursement

Response

Returns an Adjustment!

Arguments
Name Description
data - UpdateAdjustmentFeePaymentInput!

Example

Query
mutation updateAdjustmentFeePayment($data: UpdateAdjustmentFeePaymentInput!) {
  updateAdjustmentFeePayment(data: $data) {
    actions {
      ...AdjustmentActionFragment
    }
    airframes {
      ...AdjustmentAirframeFragment
    }
    allocations {
      ...AdjustmentAllocationFragment
    }
    categories
    collaborators {
      ...ActorFragment
    }
    costsExpenses {
      ...AdjustmentCostsExpensesFragment
    }
    creationDate
    documents {
      ...FileMetadataFragment
    }
    executiveSummary
    expert {
      ...ActorFragment
    }
    fees {
      ...AdjustmentFeesFragment
    }
    flights {
      ...AdjustmentFlightFragment
    }
    id
    images {
      ...FileMetadataFragment
    }
    indemnity {
      ...AdjustmentIndemnityFragment
    }
    labels {
      ...AdjustmentLabelFragment
    }
    lastUpdateDate
    legalEntities {
      ...AdjustmentLegalEntitiesFragment
    }
    lossDate
    lossLocation {
      ...LocationFragment
    }
    lossNotice {
      ...LossNoticeFragment
    }
    marketReferences {
      ...MarketReferenceFragment
    }
    operation {
      ...ActorFragment
    }
    owner {
      ...ActorFragment
    }
    recommendations
    reportDate
    reporter {
      ...ActorFragment
    }
    reportingCurrency
    reports {
      ...AdjustmentReportFragment
    }
    stakeholderReferences {
      ...StakeholderReferenceFragment
    }
    status
    statusHistory {
      ...AdjustmentStatusChangeFragment
    }
    transitions {
      ...AdjustmentTransitionFragment
    }
    unpublishedChanges
    zone {
      ...ZoneFragment
    }
  }
}
Variables
{"data": UpdateAdjustmentFeePaymentInput}
Response
{
  "data": {
    "updateAdjustmentFeePayment": {
      "actions": [AdjustmentAction],
      "airframes": [AdjustmentAirframe],
      "allocations": [AdjustmentAllocation],
      "categories": ["aircraft_hull"],
      "collaborators": [Actor],
      "costsExpenses": AdjustmentCostsExpenses,
      "creationDate": "2007-12-03T10:15:30Z",
      "documents": [FileMetadata],
      "executiveSummary": {},
      "expert": Actor,
      "fees": AdjustmentFees,
      "flights": [AdjustmentFlight],
      "id": "xyz789",
      "images": [FileMetadata],
      "indemnity": AdjustmentIndemnity,
      "labels": [AdjustmentLabel],
      "lastUpdateDate": "2007-12-03T10:15:30Z",
      "legalEntities": AdjustmentLegalEntities,
      "lossDate": "2007-12-03T10:15:30Z",
      "lossLocation": Location,
      "lossNotice": LossNotice,
      "marketReferences": [MarketReference],
      "operation": Actor,
      "owner": Actor,
      "recommendations": {},
      "reportDate": "2007-12-03T10:15:30Z",
      "reporter": Actor,
      "reportingCurrency": "xyz789",
      "reports": [AdjustmentReport],
      "stakeholderReferences": [StakeholderReference],
      "status": "abeyance",
      "statusHistory": [AdjustmentStatusChange],
      "transitions": [AdjustmentTransition],
      "unpublishedChanges": true,
      "zone": Zone
    }
  }
}

updateAdjustmentFeePaymentNarrative

Description

Update the narrative of an Adjustment Fee Payment/Disbursement

Response

Returns an Adjustment!

Arguments
Name Description
data - UpdateAdjustmentPaymentNarrativeInput!

Example

Query
mutation updateAdjustmentFeePaymentNarrative($data: UpdateAdjustmentPaymentNarrativeInput!) {
  updateAdjustmentFeePaymentNarrative(data: $data) {
    actions {
      ...AdjustmentActionFragment
    }
    airframes {
      ...AdjustmentAirframeFragment
    }
    allocations {
      ...AdjustmentAllocationFragment
    }
    categories
    collaborators {
      ...ActorFragment
    }
    costsExpenses {
      ...AdjustmentCostsExpensesFragment
    }
    creationDate
    documents {
      ...FileMetadataFragment
    }
    executiveSummary
    expert {
      ...ActorFragment
    }
    fees {
      ...AdjustmentFeesFragment
    }
    flights {
      ...AdjustmentFlightFragment
    }
    id
    images {
      ...FileMetadataFragment
    }
    indemnity {
      ...AdjustmentIndemnityFragment
    }
    labels {
      ...AdjustmentLabelFragment
    }
    lastUpdateDate
    legalEntities {
      ...AdjustmentLegalEntitiesFragment
    }
    lossDate
    lossLocation {
      ...LocationFragment
    }
    lossNotice {
      ...LossNoticeFragment
    }
    marketReferences {
      ...MarketReferenceFragment
    }
    operation {
      ...ActorFragment
    }
    owner {
      ...ActorFragment
    }
    recommendations
    reportDate
    reporter {
      ...ActorFragment
    }
    reportingCurrency
    reports {
      ...AdjustmentReportFragment
    }
    stakeholderReferences {
      ...StakeholderReferenceFragment
    }
    status
    statusHistory {
      ...AdjustmentStatusChangeFragment
    }
    transitions {
      ...AdjustmentTransitionFragment
    }
    unpublishedChanges
    zone {
      ...ZoneFragment
    }
  }
}
Variables
{"data": UpdateAdjustmentPaymentNarrativeInput}
Response
{
  "data": {
    "updateAdjustmentFeePaymentNarrative": {
      "actions": [AdjustmentAction],
      "airframes": [AdjustmentAirframe],
      "allocations": [AdjustmentAllocation],
      "categories": ["aircraft_hull"],
      "collaborators": [Actor],
      "costsExpenses": AdjustmentCostsExpenses,
      "creationDate": "2007-12-03T10:15:30Z",
      "documents": [FileMetadata],
      "executiveSummary": {},
      "expert": Actor,
      "fees": AdjustmentFees,
      "flights": [AdjustmentFlight],
      "id": "xyz789",
      "images": [FileMetadata],
      "indemnity": AdjustmentIndemnity,
      "labels": [AdjustmentLabel],
      "lastUpdateDate": "2007-12-03T10:15:30Z",
      "legalEntities": AdjustmentLegalEntities,
      "lossDate": "2007-12-03T10:15:30Z",
      "lossLocation": Location,
      "lossNotice": LossNotice,
      "marketReferences": [MarketReference],
      "operation": Actor,
      "owner": Actor,
      "recommendations": {},
      "reportDate": "2007-12-03T10:15:30Z",
      "reporter": Actor,
      "reportingCurrency": "abc123",
      "reports": [AdjustmentReport],
      "stakeholderReferences": [StakeholderReference],
      "status": "abeyance",
      "statusHistory": [AdjustmentStatusChange],
      "transitions": [AdjustmentTransition],
      "unpublishedChanges": true,
      "zone": Zone
    }
  }
}

updateAdjustmentFeeReserve

Description

Update an Adjustment Fee Reserve

Response

Returns an Adjustment!

Arguments
Name Description
data - UpdateAdjustmentFeeReserveInput!

Example

Query
mutation updateAdjustmentFeeReserve($data: UpdateAdjustmentFeeReserveInput!) {
  updateAdjustmentFeeReserve(data: $data) {
    actions {
      ...AdjustmentActionFragment
    }
    airframes {
      ...AdjustmentAirframeFragment
    }
    allocations {
      ...AdjustmentAllocationFragment
    }
    categories
    collaborators {
      ...ActorFragment
    }
    costsExpenses {
      ...AdjustmentCostsExpensesFragment
    }
    creationDate
    documents {
      ...FileMetadataFragment
    }
    executiveSummary
    expert {
      ...ActorFragment
    }
    fees {
      ...AdjustmentFeesFragment
    }
    flights {
      ...AdjustmentFlightFragment
    }
    id
    images {
      ...FileMetadataFragment
    }
    indemnity {
      ...AdjustmentIndemnityFragment
    }
    labels {
      ...AdjustmentLabelFragment
    }
    lastUpdateDate
    legalEntities {
      ...AdjustmentLegalEntitiesFragment
    }
    lossDate
    lossLocation {
      ...LocationFragment
    }
    lossNotice {
      ...LossNoticeFragment
    }
    marketReferences {
      ...MarketReferenceFragment
    }
    operation {
      ...ActorFragment
    }
    owner {
      ...ActorFragment
    }
    recommendations
    reportDate
    reporter {
      ...ActorFragment
    }
    reportingCurrency
    reports {
      ...AdjustmentReportFragment
    }
    stakeholderReferences {
      ...StakeholderReferenceFragment
    }
    status
    statusHistory {
      ...AdjustmentStatusChangeFragment
    }
    transitions {
      ...AdjustmentTransitionFragment
    }
    unpublishedChanges
    zone {
      ...ZoneFragment
    }
  }
}
Variables
{"data": UpdateAdjustmentFeeReserveInput}
Response
{
  "data": {
    "updateAdjustmentFeeReserve": {
      "actions": [AdjustmentAction],
      "airframes": [AdjustmentAirframe],
      "allocations": [AdjustmentAllocation],
      "categories": ["aircraft_hull"],
      "collaborators": [Actor],
      "costsExpenses": AdjustmentCostsExpenses,
      "creationDate": "2007-12-03T10:15:30Z",
      "documents": [FileMetadata],
      "executiveSummary": {},
      "expert": Actor,
      "fees": AdjustmentFees,
      "flights": [AdjustmentFlight],
      "id": "abc123",
      "images": [FileMetadata],
      "indemnity": AdjustmentIndemnity,
      "labels": [AdjustmentLabel],
      "lastUpdateDate": "2007-12-03T10:15:30Z",
      "legalEntities": AdjustmentLegalEntities,
      "lossDate": "2007-12-03T10:15:30Z",
      "lossLocation": Location,
      "lossNotice": LossNotice,
      "marketReferences": [MarketReference],
      "operation": Actor,
      "owner": Actor,
      "recommendations": {},
      "reportDate": "2007-12-03T10:15:30Z",
      "reporter": Actor,
      "reportingCurrency": "xyz789",
      "reports": [AdjustmentReport],
      "stakeholderReferences": [StakeholderReference],
      "status": "abeyance",
      "statusHistory": [AdjustmentStatusChange],
      "transitions": [AdjustmentTransition],
      "unpublishedChanges": true,
      "zone": Zone
    }
  }
}

updateAdjustmentFeeReserveNarrative

Description

Update the narrative of an Adjustment Fee Reserve

Response

Returns an Adjustment!

Arguments
Name Description
data - UpdateAdjustmentReserveNarrativeInput!

Example

Query
mutation updateAdjustmentFeeReserveNarrative($data: UpdateAdjustmentReserveNarrativeInput!) {
  updateAdjustmentFeeReserveNarrative(data: $data) {
    actions {
      ...AdjustmentActionFragment
    }
    airframes {
      ...AdjustmentAirframeFragment
    }
    allocations {
      ...AdjustmentAllocationFragment
    }
    categories
    collaborators {
      ...ActorFragment
    }
    costsExpenses {
      ...AdjustmentCostsExpensesFragment
    }
    creationDate
    documents {
      ...FileMetadataFragment
    }
    executiveSummary
    expert {
      ...ActorFragment
    }
    fees {
      ...AdjustmentFeesFragment
    }
    flights {
      ...AdjustmentFlightFragment
    }
    id
    images {
      ...FileMetadataFragment
    }
    indemnity {
      ...AdjustmentIndemnityFragment
    }
    labels {
      ...AdjustmentLabelFragment
    }
    lastUpdateDate
    legalEntities {
      ...AdjustmentLegalEntitiesFragment
    }
    lossDate
    lossLocation {
      ...LocationFragment
    }
    lossNotice {
      ...LossNoticeFragment
    }
    marketReferences {
      ...MarketReferenceFragment
    }
    operation {
      ...ActorFragment
    }
    owner {
      ...ActorFragment
    }
    recommendations
    reportDate
    reporter {
      ...ActorFragment
    }
    reportingCurrency
    reports {
      ...AdjustmentReportFragment
    }
    stakeholderReferences {
      ...StakeholderReferenceFragment
    }
    status
    statusHistory {
      ...AdjustmentStatusChangeFragment
    }
    transitions {
      ...AdjustmentTransitionFragment
    }
    unpublishedChanges
    zone {
      ...ZoneFragment
    }
  }
}
Variables
{"data": UpdateAdjustmentReserveNarrativeInput}
Response
{
  "data": {
    "updateAdjustmentFeeReserveNarrative": {
      "actions": [AdjustmentAction],
      "airframes": [AdjustmentAirframe],
      "allocations": [AdjustmentAllocation],
      "categories": ["aircraft_hull"],
      "collaborators": [Actor],
      "costsExpenses": AdjustmentCostsExpenses,
      "creationDate": "2007-12-03T10:15:30Z",
      "documents": [FileMetadata],
      "executiveSummary": {},
      "expert": Actor,
      "fees": AdjustmentFees,
      "flights": [AdjustmentFlight],
      "id": "abc123",
      "images": [FileMetadata],
      "indemnity": AdjustmentIndemnity,
      "labels": [AdjustmentLabel],
      "lastUpdateDate": "2007-12-03T10:15:30Z",
      "legalEntities": AdjustmentLegalEntities,
      "lossDate": "2007-12-03T10:15:30Z",
      "lossLocation": Location,
      "lossNotice": LossNotice,
      "marketReferences": [MarketReference],
      "operation": Actor,
      "owner": Actor,
      "recommendations": {},
      "reportDate": "2007-12-03T10:15:30Z",
      "reporter": Actor,
      "reportingCurrency": "xyz789",
      "reports": [AdjustmentReport],
      "stakeholderReferences": [StakeholderReference],
      "status": "abeyance",
      "statusHistory": [AdjustmentStatusChange],
      "transitions": [AdjustmentTransition],
      "unpublishedChanges": true,
      "zone": Zone
    }
  }
}

updateAdjustmentFlightDepartureAerodrome

Description

Update the Departure Aerodrome of an Adjustment Flight

Response

Returns an Adjustment!

Arguments
Name Description
data - UpdateAdjustmentFlightAerodromeInput!

Example

Query
mutation updateAdjustmentFlightDepartureAerodrome($data: UpdateAdjustmentFlightAerodromeInput!) {
  updateAdjustmentFlightDepartureAerodrome(data: $data) {
    actions {
      ...AdjustmentActionFragment
    }
    airframes {
      ...AdjustmentAirframeFragment
    }
    allocations {
      ...AdjustmentAllocationFragment
    }
    categories
    collaborators {
      ...ActorFragment
    }
    costsExpenses {
      ...AdjustmentCostsExpensesFragment
    }
    creationDate
    documents {
      ...FileMetadataFragment
    }
    executiveSummary
    expert {
      ...ActorFragment
    }
    fees {
      ...AdjustmentFeesFragment
    }
    flights {
      ...AdjustmentFlightFragment
    }
    id
    images {
      ...FileMetadataFragment
    }
    indemnity {
      ...AdjustmentIndemnityFragment
    }
    labels {
      ...AdjustmentLabelFragment
    }
    lastUpdateDate
    legalEntities {
      ...AdjustmentLegalEntitiesFragment
    }
    lossDate
    lossLocation {
      ...LocationFragment
    }
    lossNotice {
      ...LossNoticeFragment
    }
    marketReferences {
      ...MarketReferenceFragment
    }
    operation {
      ...ActorFragment
    }
    owner {
      ...ActorFragment
    }
    recommendations
    reportDate
    reporter {
      ...ActorFragment
    }
    reportingCurrency
    reports {
      ...AdjustmentReportFragment
    }
    stakeholderReferences {
      ...StakeholderReferenceFragment
    }
    status
    statusHistory {
      ...AdjustmentStatusChangeFragment
    }
    transitions {
      ...AdjustmentTransitionFragment
    }
    unpublishedChanges
    zone {
      ...ZoneFragment
    }
  }
}
Variables
{"data": UpdateAdjustmentFlightAerodromeInput}
Response
{
  "data": {
    "updateAdjustmentFlightDepartureAerodrome": {
      "actions": [AdjustmentAction],
      "airframes": [AdjustmentAirframe],
      "allocations": [AdjustmentAllocation],
      "categories": ["aircraft_hull"],
      "collaborators": [Actor],
      "costsExpenses": AdjustmentCostsExpenses,
      "creationDate": "2007-12-03T10:15:30Z",
      "documents": [FileMetadata],
      "executiveSummary": {},
      "expert": Actor,
      "fees": AdjustmentFees,
      "flights": [AdjustmentFlight],
      "id": "xyz789",
      "images": [FileMetadata],
      "indemnity": AdjustmentIndemnity,
      "labels": [AdjustmentLabel],
      "lastUpdateDate": "2007-12-03T10:15:30Z",
      "legalEntities": AdjustmentLegalEntities,
      "lossDate": "2007-12-03T10:15:30Z",
      "lossLocation": Location,
      "lossNotice": LossNotice,
      "marketReferences": [MarketReference],
      "operation": Actor,
      "owner": Actor,
      "recommendations": {},
      "reportDate": "2007-12-03T10:15:30Z",
      "reporter": Actor,
      "reportingCurrency": "abc123",
      "reports": [AdjustmentReport],
      "stakeholderReferences": [StakeholderReference],
      "status": "abeyance",
      "statusHistory": [AdjustmentStatusChange],
      "transitions": [AdjustmentTransition],
      "unpublishedChanges": false,
      "zone": Zone
    }
  }
}

updateAdjustmentFlightDestinationAerodrome

Description

Update the Destination Aerodrome of an Adjustment Flight

Response

Returns an Adjustment!

Arguments
Name Description
data - UpdateAdjustmentFlightAerodromeInput!

Example

Query
mutation updateAdjustmentFlightDestinationAerodrome($data: UpdateAdjustmentFlightAerodromeInput!) {
  updateAdjustmentFlightDestinationAerodrome(data: $data) {
    actions {
      ...AdjustmentActionFragment
    }
    airframes {
      ...AdjustmentAirframeFragment
    }
    allocations {
      ...AdjustmentAllocationFragment
    }
    categories
    collaborators {
      ...ActorFragment
    }
    costsExpenses {
      ...AdjustmentCostsExpensesFragment
    }
    creationDate
    documents {
      ...FileMetadataFragment
    }
    executiveSummary
    expert {
      ...ActorFragment
    }
    fees {
      ...AdjustmentFeesFragment
    }
    flights {
      ...AdjustmentFlightFragment
    }
    id
    images {
      ...FileMetadataFragment
    }
    indemnity {
      ...AdjustmentIndemnityFragment
    }
    labels {
      ...AdjustmentLabelFragment
    }
    lastUpdateDate
    legalEntities {
      ...AdjustmentLegalEntitiesFragment
    }
    lossDate
    lossLocation {
      ...LocationFragment
    }
    lossNotice {
      ...LossNoticeFragment
    }
    marketReferences {
      ...MarketReferenceFragment
    }
    operation {
      ...ActorFragment
    }
    owner {
      ...ActorFragment
    }
    recommendations
    reportDate
    reporter {
      ...ActorFragment
    }
    reportingCurrency
    reports {
      ...AdjustmentReportFragment
    }
    stakeholderReferences {
      ...StakeholderReferenceFragment
    }
    status
    statusHistory {
      ...AdjustmentStatusChangeFragment
    }
    transitions {
      ...AdjustmentTransitionFragment
    }
    unpublishedChanges
    zone {
      ...ZoneFragment
    }
  }
}
Variables
{"data": UpdateAdjustmentFlightAerodromeInput}
Response
{
  "data": {
    "updateAdjustmentFlightDestinationAerodrome": {
      "actions": [AdjustmentAction],
      "airframes": [AdjustmentAirframe],
      "allocations": [AdjustmentAllocation],
      "categories": ["aircraft_hull"],
      "collaborators": [Actor],
      "costsExpenses": AdjustmentCostsExpenses,
      "creationDate": "2007-12-03T10:15:30Z",
      "documents": [FileMetadata],
      "executiveSummary": {},
      "expert": Actor,
      "fees": AdjustmentFees,
      "flights": [AdjustmentFlight],
      "id": "xyz789",
      "images": [FileMetadata],
      "indemnity": AdjustmentIndemnity,
      "labels": [AdjustmentLabel],
      "lastUpdateDate": "2007-12-03T10:15:30Z",
      "legalEntities": AdjustmentLegalEntities,
      "lossDate": "2007-12-03T10:15:30Z",
      "lossLocation": Location,
      "lossNotice": LossNotice,
      "marketReferences": [MarketReference],
      "operation": Actor,
      "owner": Actor,
      "recommendations": {},
      "reportDate": "2007-12-03T10:15:30Z",
      "reporter": Actor,
      "reportingCurrency": "xyz789",
      "reports": [AdjustmentReport],
      "stakeholderReferences": [StakeholderReference],
      "status": "abeyance",
      "statusHistory": [AdjustmentStatusChange],
      "transitions": [AdjustmentTransition],
      "unpublishedChanges": true,
      "zone": Zone
    }
  }
}

updateAdjustmentFlightDiversionAerodrome

Description

Update the Diversion Aerodrome of an Adjustment Flight

Response

Returns an Adjustment!

Arguments
Name Description
data - UpdateAdjustmentFlightAerodromeInput!

Example

Query
mutation updateAdjustmentFlightDiversionAerodrome($data: UpdateAdjustmentFlightAerodromeInput!) {
  updateAdjustmentFlightDiversionAerodrome(data: $data) {
    actions {
      ...AdjustmentActionFragment
    }
    airframes {
      ...AdjustmentAirframeFragment
    }
    allocations {
      ...AdjustmentAllocationFragment
    }
    categories
    collaborators {
      ...ActorFragment
    }
    costsExpenses {
      ...AdjustmentCostsExpensesFragment
    }
    creationDate
    documents {
      ...FileMetadataFragment
    }
    executiveSummary
    expert {
      ...ActorFragment
    }
    fees {
      ...AdjustmentFeesFragment
    }
    flights {
      ...AdjustmentFlightFragment
    }
    id
    images {
      ...FileMetadataFragment
    }
    indemnity {
      ...AdjustmentIndemnityFragment
    }
    labels {
      ...AdjustmentLabelFragment
    }
    lastUpdateDate
    legalEntities {
      ...AdjustmentLegalEntitiesFragment
    }
    lossDate
    lossLocation {
      ...LocationFragment
    }
    lossNotice {
      ...LossNoticeFragment
    }
    marketReferences {
      ...MarketReferenceFragment
    }
    operation {
      ...ActorFragment
    }
    owner {
      ...ActorFragment
    }
    recommendations
    reportDate
    reporter {
      ...ActorFragment
    }
    reportingCurrency
    reports {
      ...AdjustmentReportFragment
    }
    stakeholderReferences {
      ...StakeholderReferenceFragment
    }
    status
    statusHistory {
      ...AdjustmentStatusChangeFragment
    }
    transitions {
      ...AdjustmentTransitionFragment
    }
    unpublishedChanges
    zone {
      ...ZoneFragment
    }
  }
}
Variables
{"data": UpdateAdjustmentFlightAerodromeInput}
Response
{
  "data": {
    "updateAdjustmentFlightDiversionAerodrome": {
      "actions": [AdjustmentAction],
      "airframes": [AdjustmentAirframe],
      "allocations": [AdjustmentAllocation],
      "categories": ["aircraft_hull"],
      "collaborators": [Actor],
      "costsExpenses": AdjustmentCostsExpenses,
      "creationDate": "2007-12-03T10:15:30Z",
      "documents": [FileMetadata],
      "executiveSummary": {},
      "expert": Actor,
      "fees": AdjustmentFees,
      "flights": [AdjustmentFlight],
      "id": "xyz789",
      "images": [FileMetadata],
      "indemnity": AdjustmentIndemnity,
      "labels": [AdjustmentLabel],
      "lastUpdateDate": "2007-12-03T10:15:30Z",
      "legalEntities": AdjustmentLegalEntities,
      "lossDate": "2007-12-03T10:15:30Z",
      "lossLocation": Location,
      "lossNotice": LossNotice,
      "marketReferences": [MarketReference],
      "operation": Actor,
      "owner": Actor,
      "recommendations": {},
      "reportDate": "2007-12-03T10:15:30Z",
      "reporter": Actor,
      "reportingCurrency": "xyz789",
      "reports": [AdjustmentReport],
      "stakeholderReferences": [StakeholderReference],
      "status": "abeyance",
      "statusHistory": [AdjustmentStatusChange],
      "transitions": [AdjustmentTransition],
      "unpublishedChanges": false,
      "zone": Zone
    }
  }
}

updateAdjustmentFlightFlightNumbers

Description

Update the Flight numbers of an Adjustment Flight

Response

Returns an Adjustment!

Arguments
Name Description
data - UpdateAdjustmentFlightFlightNumbersInput!

Example

Query
mutation updateAdjustmentFlightFlightNumbers($data: UpdateAdjustmentFlightFlightNumbersInput!) {
  updateAdjustmentFlightFlightNumbers(data: $data) {
    actions {
      ...AdjustmentActionFragment
    }
    airframes {
      ...AdjustmentAirframeFragment
    }
    allocations {
      ...AdjustmentAllocationFragment
    }
    categories
    collaborators {
      ...ActorFragment
    }
    costsExpenses {
      ...AdjustmentCostsExpensesFragment
    }
    creationDate
    documents {
      ...FileMetadataFragment
    }
    executiveSummary
    expert {
      ...ActorFragment
    }
    fees {
      ...AdjustmentFeesFragment
    }
    flights {
      ...AdjustmentFlightFragment
    }
    id
    images {
      ...FileMetadataFragment
    }
    indemnity {
      ...AdjustmentIndemnityFragment
    }
    labels {
      ...AdjustmentLabelFragment
    }
    lastUpdateDate
    legalEntities {
      ...AdjustmentLegalEntitiesFragment
    }
    lossDate
    lossLocation {
      ...LocationFragment
    }
    lossNotice {
      ...LossNoticeFragment
    }
    marketReferences {
      ...MarketReferenceFragment
    }
    operation {
      ...ActorFragment
    }
    owner {
      ...ActorFragment
    }
    recommendations
    reportDate
    reporter {
      ...ActorFragment
    }
    reportingCurrency
    reports {
      ...AdjustmentReportFragment
    }
    stakeholderReferences {
      ...StakeholderReferenceFragment
    }
    status
    statusHistory {
      ...AdjustmentStatusChangeFragment
    }
    transitions {
      ...AdjustmentTransitionFragment
    }
    unpublishedChanges
    zone {
      ...ZoneFragment
    }
  }
}
Variables
{"data": UpdateAdjustmentFlightFlightNumbersInput}
Response
{
  "data": {
    "updateAdjustmentFlightFlightNumbers": {
      "actions": [AdjustmentAction],
      "airframes": [AdjustmentAirframe],
      "allocations": [AdjustmentAllocation],
      "categories": ["aircraft_hull"],
      "collaborators": [Actor],
      "costsExpenses": AdjustmentCostsExpenses,
      "creationDate": "2007-12-03T10:15:30Z",
      "documents": [FileMetadata],
      "executiveSummary": {},
      "expert": Actor,
      "fees": AdjustmentFees,
      "flights": [AdjustmentFlight],
      "id": "abc123",
      "images": [FileMetadata],
      "indemnity": AdjustmentIndemnity,
      "labels": [AdjustmentLabel],
      "lastUpdateDate": "2007-12-03T10:15:30Z",
      "legalEntities": AdjustmentLegalEntities,
      "lossDate": "2007-12-03T10:15:30Z",
      "lossLocation": Location,
      "lossNotice": LossNotice,
      "marketReferences": [MarketReference],
      "operation": Actor,
      "owner": Actor,
      "recommendations": {},
      "reportDate": "2007-12-03T10:15:30Z",
      "reporter": Actor,
      "reportingCurrency": "xyz789",
      "reports": [AdjustmentReport],
      "stakeholderReferences": [StakeholderReference],
      "status": "abeyance",
      "statusHistory": [AdjustmentStatusChange],
      "transitions": [AdjustmentTransition],
      "unpublishedChanges": false,
      "zone": Zone
    }
  }
}

updateAdjustmentFlightOperator

Description

Update the Operator of an Adjustment Flight

Response

Returns an Adjustment!

Arguments
Name Description
data - UpdateAdjustmentFlightOperatorInput!

Example

Query
mutation updateAdjustmentFlightOperator($data: UpdateAdjustmentFlightOperatorInput!) {
  updateAdjustmentFlightOperator(data: $data) {
    actions {
      ...AdjustmentActionFragment
    }
    airframes {
      ...AdjustmentAirframeFragment
    }
    allocations {
      ...AdjustmentAllocationFragment
    }
    categories
    collaborators {
      ...ActorFragment
    }
    costsExpenses {
      ...AdjustmentCostsExpensesFragment
    }
    creationDate
    documents {
      ...FileMetadataFragment
    }
    executiveSummary
    expert {
      ...ActorFragment
    }
    fees {
      ...AdjustmentFeesFragment
    }
    flights {
      ...AdjustmentFlightFragment
    }
    id
    images {
      ...FileMetadataFragment
    }
    indemnity {
      ...AdjustmentIndemnityFragment
    }
    labels {
      ...AdjustmentLabelFragment
    }
    lastUpdateDate
    legalEntities {
      ...AdjustmentLegalEntitiesFragment
    }
    lossDate
    lossLocation {
      ...LocationFragment
    }
    lossNotice {
      ...LossNoticeFragment
    }
    marketReferences {
      ...MarketReferenceFragment
    }
    operation {
      ...ActorFragment
    }
    owner {
      ...ActorFragment
    }
    recommendations
    reportDate
    reporter {
      ...ActorFragment
    }
    reportingCurrency
    reports {
      ...AdjustmentReportFragment
    }
    stakeholderReferences {
      ...StakeholderReferenceFragment
    }
    status
    statusHistory {
      ...AdjustmentStatusChangeFragment
    }
    transitions {
      ...AdjustmentTransitionFragment
    }
    unpublishedChanges
    zone {
      ...ZoneFragment
    }
  }
}
Variables
{"data": UpdateAdjustmentFlightOperatorInput}
Response
{
  "data": {
    "updateAdjustmentFlightOperator": {
      "actions": [AdjustmentAction],
      "airframes": [AdjustmentAirframe],
      "allocations": [AdjustmentAllocation],
      "categories": ["aircraft_hull"],
      "collaborators": [Actor],
      "costsExpenses": AdjustmentCostsExpenses,
      "creationDate": "2007-12-03T10:15:30Z",
      "documents": [FileMetadata],
      "executiveSummary": {},
      "expert": Actor,
      "fees": AdjustmentFees,
      "flights": [AdjustmentFlight],
      "id": "abc123",
      "images": [FileMetadata],
      "indemnity": AdjustmentIndemnity,
      "labels": [AdjustmentLabel],
      "lastUpdateDate": "2007-12-03T10:15:30Z",
      "legalEntities": AdjustmentLegalEntities,
      "lossDate": "2007-12-03T10:15:30Z",
      "lossLocation": Location,
      "lossNotice": LossNotice,
      "marketReferences": [MarketReference],
      "operation": Actor,
      "owner": Actor,
      "recommendations": {},
      "reportDate": "2007-12-03T10:15:30Z",
      "reporter": Actor,
      "reportingCurrency": "abc123",
      "reports": [AdjustmentReport],
      "stakeholderReferences": [StakeholderReference],
      "status": "abeyance",
      "statusHistory": [AdjustmentStatusChange],
      "transitions": [AdjustmentTransition],
      "unpublishedChanges": true,
      "zone": Zone
    }
  }
}

updateAdjustmentImageMetadata

Response

Returns an Adjustment!

Arguments
Name Description
data - UpdateAdjustmentImageMetadataInput!

Example

Query
mutation updateAdjustmentImageMetadata($data: UpdateAdjustmentImageMetadataInput!) {
  updateAdjustmentImageMetadata(data: $data) {
    actions {
      ...AdjustmentActionFragment
    }
    airframes {
      ...AdjustmentAirframeFragment
    }
    allocations {
      ...AdjustmentAllocationFragment
    }
    categories
    collaborators {
      ...ActorFragment
    }
    costsExpenses {
      ...AdjustmentCostsExpensesFragment
    }
    creationDate
    documents {
      ...FileMetadataFragment
    }
    executiveSummary
    expert {
      ...ActorFragment
    }
    fees {
      ...AdjustmentFeesFragment
    }
    flights {
      ...AdjustmentFlightFragment
    }
    id
    images {
      ...FileMetadataFragment
    }
    indemnity {
      ...AdjustmentIndemnityFragment
    }
    labels {
      ...AdjustmentLabelFragment
    }
    lastUpdateDate
    legalEntities {
      ...AdjustmentLegalEntitiesFragment
    }
    lossDate
    lossLocation {
      ...LocationFragment
    }
    lossNotice {
      ...LossNoticeFragment
    }
    marketReferences {
      ...MarketReferenceFragment
    }
    operation {
      ...ActorFragment
    }
    owner {
      ...ActorFragment
    }
    recommendations
    reportDate
    reporter {
      ...ActorFragment
    }
    reportingCurrency
    reports {
      ...AdjustmentReportFragment
    }
    stakeholderReferences {
      ...StakeholderReferenceFragment
    }
    status
    statusHistory {
      ...AdjustmentStatusChangeFragment
    }
    transitions {
      ...AdjustmentTransitionFragment
    }
    unpublishedChanges
    zone {
      ...ZoneFragment
    }
  }
}
Variables
{"data": UpdateAdjustmentImageMetadataInput}
Response
{
  "data": {
    "updateAdjustmentImageMetadata": {
      "actions": [AdjustmentAction],
      "airframes": [AdjustmentAirframe],
      "allocations": [AdjustmentAllocation],
      "categories": ["aircraft_hull"],
      "collaborators": [Actor],
      "costsExpenses": AdjustmentCostsExpenses,
      "creationDate": "2007-12-03T10:15:30Z",
      "documents": [FileMetadata],
      "executiveSummary": {},
      "expert": Actor,
      "fees": AdjustmentFees,
      "flights": [AdjustmentFlight],
      "id": "abc123",
      "images": [FileMetadata],
      "indemnity": AdjustmentIndemnity,
      "labels": [AdjustmentLabel],
      "lastUpdateDate": "2007-12-03T10:15:30Z",
      "legalEntities": AdjustmentLegalEntities,
      "lossDate": "2007-12-03T10:15:30Z",
      "lossLocation": Location,
      "lossNotice": LossNotice,
      "marketReferences": [MarketReference],
      "operation": Actor,
      "owner": Actor,
      "recommendations": {},
      "reportDate": "2007-12-03T10:15:30Z",
      "reporter": Actor,
      "reportingCurrency": "abc123",
      "reports": [AdjustmentReport],
      "stakeholderReferences": [StakeholderReference],
      "status": "abeyance",
      "statusHistory": [AdjustmentStatusChange],
      "transitions": [AdjustmentTransition],
      "unpublishedChanges": true,
      "zone": Zone
    }
  }
}

updateAdjustmentIndemnityPayment

Description

Update an Adjustment Indemnity Payment/Disbursement

Response

Returns an Adjustment!

Arguments
Name Description
data - UpdateAdjustmentIndemnityPaymentInput!

Example

Query
mutation updateAdjustmentIndemnityPayment($data: UpdateAdjustmentIndemnityPaymentInput!) {
  updateAdjustmentIndemnityPayment(data: $data) {
    actions {
      ...AdjustmentActionFragment
    }
    airframes {
      ...AdjustmentAirframeFragment
    }
    allocations {
      ...AdjustmentAllocationFragment
    }
    categories
    collaborators {
      ...ActorFragment
    }
    costsExpenses {
      ...AdjustmentCostsExpensesFragment
    }
    creationDate
    documents {
      ...FileMetadataFragment
    }
    executiveSummary
    expert {
      ...ActorFragment
    }
    fees {
      ...AdjustmentFeesFragment
    }
    flights {
      ...AdjustmentFlightFragment
    }
    id
    images {
      ...FileMetadataFragment
    }
    indemnity {
      ...AdjustmentIndemnityFragment
    }
    labels {
      ...AdjustmentLabelFragment
    }
    lastUpdateDate
    legalEntities {
      ...AdjustmentLegalEntitiesFragment
    }
    lossDate
    lossLocation {
      ...LocationFragment
    }
    lossNotice {
      ...LossNoticeFragment
    }
    marketReferences {
      ...MarketReferenceFragment
    }
    operation {
      ...ActorFragment
    }
    owner {
      ...ActorFragment
    }
    recommendations
    reportDate
    reporter {
      ...ActorFragment
    }
    reportingCurrency
    reports {
      ...AdjustmentReportFragment
    }
    stakeholderReferences {
      ...StakeholderReferenceFragment
    }
    status
    statusHistory {
      ...AdjustmentStatusChangeFragment
    }
    transitions {
      ...AdjustmentTransitionFragment
    }
    unpublishedChanges
    zone {
      ...ZoneFragment
    }
  }
}
Variables
{"data": UpdateAdjustmentIndemnityPaymentInput}
Response
{
  "data": {
    "updateAdjustmentIndemnityPayment": {
      "actions": [AdjustmentAction],
      "airframes": [AdjustmentAirframe],
      "allocations": [AdjustmentAllocation],
      "categories": ["aircraft_hull"],
      "collaborators": [Actor],
      "costsExpenses": AdjustmentCostsExpenses,
      "creationDate": "2007-12-03T10:15:30Z",
      "documents": [FileMetadata],
      "executiveSummary": {},
      "expert": Actor,
      "fees": AdjustmentFees,
      "flights": [AdjustmentFlight],
      "id": "xyz789",
      "images": [FileMetadata],
      "indemnity": AdjustmentIndemnity,
      "labels": [AdjustmentLabel],
      "lastUpdateDate": "2007-12-03T10:15:30Z",
      "legalEntities": AdjustmentLegalEntities,
      "lossDate": "2007-12-03T10:15:30Z",
      "lossLocation": Location,
      "lossNotice": LossNotice,
      "marketReferences": [MarketReference],
      "operation": Actor,
      "owner": Actor,
      "recommendations": {},
      "reportDate": "2007-12-03T10:15:30Z",
      "reporter": Actor,
      "reportingCurrency": "xyz789",
      "reports": [AdjustmentReport],
      "stakeholderReferences": [StakeholderReference],
      "status": "abeyance",
      "statusHistory": [AdjustmentStatusChange],
      "transitions": [AdjustmentTransition],
      "unpublishedChanges": false,
      "zone": Zone
    }
  }
}

updateAdjustmentIndemnityPaymentNarrative

Description

Update the narrative of an Adjustment Indemnity Payment/Disbursement

Response

Returns an Adjustment!

Arguments
Name Description
data - UpdateAdjustmentPaymentNarrativeInput!

Example

Query
mutation updateAdjustmentIndemnityPaymentNarrative($data: UpdateAdjustmentPaymentNarrativeInput!) {
  updateAdjustmentIndemnityPaymentNarrative(data: $data) {
    actions {
      ...AdjustmentActionFragment
    }
    airframes {
      ...AdjustmentAirframeFragment
    }
    allocations {
      ...AdjustmentAllocationFragment
    }
    categories
    collaborators {
      ...ActorFragment
    }
    costsExpenses {
      ...AdjustmentCostsExpensesFragment
    }
    creationDate
    documents {
      ...FileMetadataFragment
    }
    executiveSummary
    expert {
      ...ActorFragment
    }
    fees {
      ...AdjustmentFeesFragment
    }
    flights {
      ...AdjustmentFlightFragment
    }
    id
    images {
      ...FileMetadataFragment
    }
    indemnity {
      ...AdjustmentIndemnityFragment
    }
    labels {
      ...AdjustmentLabelFragment
    }
    lastUpdateDate
    legalEntities {
      ...AdjustmentLegalEntitiesFragment
    }
    lossDate
    lossLocation {
      ...LocationFragment
    }
    lossNotice {
      ...LossNoticeFragment
    }
    marketReferences {
      ...MarketReferenceFragment
    }
    operation {
      ...ActorFragment
    }
    owner {
      ...ActorFragment
    }
    recommendations
    reportDate
    reporter {
      ...ActorFragment
    }
    reportingCurrency
    reports {
      ...AdjustmentReportFragment
    }
    stakeholderReferences {
      ...StakeholderReferenceFragment
    }
    status
    statusHistory {
      ...AdjustmentStatusChangeFragment
    }
    transitions {
      ...AdjustmentTransitionFragment
    }
    unpublishedChanges
    zone {
      ...ZoneFragment
    }
  }
}
Variables
{"data": UpdateAdjustmentPaymentNarrativeInput}
Response
{
  "data": {
    "updateAdjustmentIndemnityPaymentNarrative": {
      "actions": [AdjustmentAction],
      "airframes": [AdjustmentAirframe],
      "allocations": [AdjustmentAllocation],
      "categories": ["aircraft_hull"],
      "collaborators": [Actor],
      "costsExpenses": AdjustmentCostsExpenses,
      "creationDate": "2007-12-03T10:15:30Z",
      "documents": [FileMetadata],
      "executiveSummary": {},
      "expert": Actor,
      "fees": AdjustmentFees,
      "flights": [AdjustmentFlight],
      "id": "abc123",
      "images": [FileMetadata],
      "indemnity": AdjustmentIndemnity,
      "labels": [AdjustmentLabel],
      "lastUpdateDate": "2007-12-03T10:15:30Z",
      "legalEntities": AdjustmentLegalEntities,
      "lossDate": "2007-12-03T10:15:30Z",
      "lossLocation": Location,
      "lossNotice": LossNotice,
      "marketReferences": [MarketReference],
      "operation": Actor,
      "owner": Actor,
      "recommendations": {},
      "reportDate": "2007-12-03T10:15:30Z",
      "reporter": Actor,
      "reportingCurrency": "abc123",
      "reports": [AdjustmentReport],
      "stakeholderReferences": [StakeholderReference],
      "status": "abeyance",
      "statusHistory": [AdjustmentStatusChange],
      "transitions": [AdjustmentTransition],
      "unpublishedChanges": false,
      "zone": Zone
    }
  }
}

updateAdjustmentIndemnityReserve

Description

Update an Adjustment Indemnity Reserve

Response

Returns an Adjustment!

Arguments
Name Description
data - UpdateAdjustmentIndemnityReserveInput!

Example

Query
mutation updateAdjustmentIndemnityReserve($data: UpdateAdjustmentIndemnityReserveInput!) {
  updateAdjustmentIndemnityReserve(data: $data) {
    actions {
      ...AdjustmentActionFragment
    }
    airframes {
      ...AdjustmentAirframeFragment
    }
    allocations {
      ...AdjustmentAllocationFragment
    }
    categories
    collaborators {
      ...ActorFragment
    }
    costsExpenses {
      ...AdjustmentCostsExpensesFragment
    }
    creationDate
    documents {
      ...FileMetadataFragment
    }
    executiveSummary
    expert {
      ...ActorFragment
    }
    fees {
      ...AdjustmentFeesFragment
    }
    flights {
      ...AdjustmentFlightFragment
    }
    id
    images {
      ...FileMetadataFragment
    }
    indemnity {
      ...AdjustmentIndemnityFragment
    }
    labels {
      ...AdjustmentLabelFragment
    }
    lastUpdateDate
    legalEntities {
      ...AdjustmentLegalEntitiesFragment
    }
    lossDate
    lossLocation {
      ...LocationFragment
    }
    lossNotice {
      ...LossNoticeFragment
    }
    marketReferences {
      ...MarketReferenceFragment
    }
    operation {
      ...ActorFragment
    }
    owner {
      ...ActorFragment
    }
    recommendations
    reportDate
    reporter {
      ...ActorFragment
    }
    reportingCurrency
    reports {
      ...AdjustmentReportFragment
    }
    stakeholderReferences {
      ...StakeholderReferenceFragment
    }
    status
    statusHistory {
      ...AdjustmentStatusChangeFragment
    }
    transitions {
      ...AdjustmentTransitionFragment
    }
    unpublishedChanges
    zone {
      ...ZoneFragment
    }
  }
}
Variables
{"data": UpdateAdjustmentIndemnityReserveInput}
Response
{
  "data": {
    "updateAdjustmentIndemnityReserve": {
      "actions": [AdjustmentAction],
      "airframes": [AdjustmentAirframe],
      "allocations": [AdjustmentAllocation],
      "categories": ["aircraft_hull"],
      "collaborators": [Actor],
      "costsExpenses": AdjustmentCostsExpenses,
      "creationDate": "2007-12-03T10:15:30Z",
      "documents": [FileMetadata],
      "executiveSummary": {},
      "expert": Actor,
      "fees": AdjustmentFees,
      "flights": [AdjustmentFlight],
      "id": "xyz789",
      "images": [FileMetadata],
      "indemnity": AdjustmentIndemnity,
      "labels": [AdjustmentLabel],
      "lastUpdateDate": "2007-12-03T10:15:30Z",
      "legalEntities": AdjustmentLegalEntities,
      "lossDate": "2007-12-03T10:15:30Z",
      "lossLocation": Location,
      "lossNotice": LossNotice,
      "marketReferences": [MarketReference],
      "operation": Actor,
      "owner": Actor,
      "recommendations": {},
      "reportDate": "2007-12-03T10:15:30Z",
      "reporter": Actor,
      "reportingCurrency": "xyz789",
      "reports": [AdjustmentReport],
      "stakeholderReferences": [StakeholderReference],
      "status": "abeyance",
      "statusHistory": [AdjustmentStatusChange],
      "transitions": [AdjustmentTransition],
      "unpublishedChanges": false,
      "zone": Zone
    }
  }
}

updateAdjustmentIndemnityReserveNarrative

Description

Update the narrative of an Adjustment Indemnity Reserve

Response

Returns an Adjustment!

Arguments
Name Description
data - UpdateAdjustmentReserveNarrativeInput!

Example

Query
mutation updateAdjustmentIndemnityReserveNarrative($data: UpdateAdjustmentReserveNarrativeInput!) {
  updateAdjustmentIndemnityReserveNarrative(data: $data) {
    actions {
      ...AdjustmentActionFragment
    }
    airframes {
      ...AdjustmentAirframeFragment
    }
    allocations {
      ...AdjustmentAllocationFragment
    }
    categories
    collaborators {
      ...ActorFragment
    }
    costsExpenses {
      ...AdjustmentCostsExpensesFragment
    }
    creationDate
    documents {
      ...FileMetadataFragment
    }
    executiveSummary
    expert {
      ...ActorFragment
    }
    fees {
      ...AdjustmentFeesFragment
    }
    flights {
      ...AdjustmentFlightFragment
    }
    id
    images {
      ...FileMetadataFragment
    }
    indemnity {
      ...AdjustmentIndemnityFragment
    }
    labels {
      ...AdjustmentLabelFragment
    }
    lastUpdateDate
    legalEntities {
      ...AdjustmentLegalEntitiesFragment
    }
    lossDate
    lossLocation {
      ...LocationFragment
    }
    lossNotice {
      ...LossNoticeFragment
    }
    marketReferences {
      ...MarketReferenceFragment
    }
    operation {
      ...ActorFragment
    }
    owner {
      ...ActorFragment
    }
    recommendations
    reportDate
    reporter {
      ...ActorFragment
    }
    reportingCurrency
    reports {
      ...AdjustmentReportFragment
    }
    stakeholderReferences {
      ...StakeholderReferenceFragment
    }
    status
    statusHistory {
      ...AdjustmentStatusChangeFragment
    }
    transitions {
      ...AdjustmentTransitionFragment
    }
    unpublishedChanges
    zone {
      ...ZoneFragment
    }
  }
}
Variables
{"data": UpdateAdjustmentReserveNarrativeInput}
Response
{
  "data": {
    "updateAdjustmentIndemnityReserveNarrative": {
      "actions": [AdjustmentAction],
      "airframes": [AdjustmentAirframe],
      "allocations": [AdjustmentAllocation],
      "categories": ["aircraft_hull"],
      "collaborators": [Actor],
      "costsExpenses": AdjustmentCostsExpenses,
      "creationDate": "2007-12-03T10:15:30Z",
      "documents": [FileMetadata],
      "executiveSummary": {},
      "expert": Actor,
      "fees": AdjustmentFees,
      "flights": [AdjustmentFlight],
      "id": "xyz789",
      "images": [FileMetadata],
      "indemnity": AdjustmentIndemnity,
      "labels": [AdjustmentLabel],
      "lastUpdateDate": "2007-12-03T10:15:30Z",
      "legalEntities": AdjustmentLegalEntities,
      "lossDate": "2007-12-03T10:15:30Z",
      "lossLocation": Location,
      "lossNotice": LossNotice,
      "marketReferences": [MarketReference],
      "operation": Actor,
      "owner": Actor,
      "recommendations": {},
      "reportDate": "2007-12-03T10:15:30Z",
      "reporter": Actor,
      "reportingCurrency": "abc123",
      "reports": [AdjustmentReport],
      "stakeholderReferences": [StakeholderReference],
      "status": "abeyance",
      "statusHistory": [AdjustmentStatusChange],
      "transitions": [AdjustmentTransition],
      "unpublishedChanges": true,
      "zone": Zone
    }
  }
}

updateAdjustmentIndividual

Description

Update an Individual of an Adjustment

Response

Returns an Adjustment!

Arguments
Name Description
data - UpdateAdjustmentIndividualInput!

Example

Query
mutation updateAdjustmentIndividual($data: UpdateAdjustmentIndividualInput!) {
  updateAdjustmentIndividual(data: $data) {
    actions {
      ...AdjustmentActionFragment
    }
    airframes {
      ...AdjustmentAirframeFragment
    }
    allocations {
      ...AdjustmentAllocationFragment
    }
    categories
    collaborators {
      ...ActorFragment
    }
    costsExpenses {
      ...AdjustmentCostsExpensesFragment
    }
    creationDate
    documents {
      ...FileMetadataFragment
    }
    executiveSummary
    expert {
      ...ActorFragment
    }
    fees {
      ...AdjustmentFeesFragment
    }
    flights {
      ...AdjustmentFlightFragment
    }
    id
    images {
      ...FileMetadataFragment
    }
    indemnity {
      ...AdjustmentIndemnityFragment
    }
    labels {
      ...AdjustmentLabelFragment
    }
    lastUpdateDate
    legalEntities {
      ...AdjustmentLegalEntitiesFragment
    }
    lossDate
    lossLocation {
      ...LocationFragment
    }
    lossNotice {
      ...LossNoticeFragment
    }
    marketReferences {
      ...MarketReferenceFragment
    }
    operation {
      ...ActorFragment
    }
    owner {
      ...ActorFragment
    }
    recommendations
    reportDate
    reporter {
      ...ActorFragment
    }
    reportingCurrency
    reports {
      ...AdjustmentReportFragment
    }
    stakeholderReferences {
      ...StakeholderReferenceFragment
    }
    status
    statusHistory {
      ...AdjustmentStatusChangeFragment
    }
    transitions {
      ...AdjustmentTransitionFragment
    }
    unpublishedChanges
    zone {
      ...ZoneFragment
    }
  }
}
Variables
{"data": UpdateAdjustmentIndividualInput}
Response
{
  "data": {
    "updateAdjustmentIndividual": {
      "actions": [AdjustmentAction],
      "airframes": [AdjustmentAirframe],
      "allocations": [AdjustmentAllocation],
      "categories": ["aircraft_hull"],
      "collaborators": [Actor],
      "costsExpenses": AdjustmentCostsExpenses,
      "creationDate": "2007-12-03T10:15:30Z",
      "documents": [FileMetadata],
      "executiveSummary": {},
      "expert": Actor,
      "fees": AdjustmentFees,
      "flights": [AdjustmentFlight],
      "id": "abc123",
      "images": [FileMetadata],
      "indemnity": AdjustmentIndemnity,
      "labels": [AdjustmentLabel],
      "lastUpdateDate": "2007-12-03T10:15:30Z",
      "legalEntities": AdjustmentLegalEntities,
      "lossDate": "2007-12-03T10:15:30Z",
      "lossLocation": Location,
      "lossNotice": LossNotice,
      "marketReferences": [MarketReference],
      "operation": Actor,
      "owner": Actor,
      "recommendations": {},
      "reportDate": "2007-12-03T10:15:30Z",
      "reporter": Actor,
      "reportingCurrency": "xyz789",
      "reports": [AdjustmentReport],
      "stakeholderReferences": [StakeholderReference],
      "status": "abeyance",
      "statusHistory": [AdjustmentStatusChange],
      "transitions": [AdjustmentTransition],
      "unpublishedChanges": false,
      "zone": Zone
    }
  }
}

updateAdjustmentLossCategories

Description

Update the Loss Categories of an Adjustment

Response

Returns an Adjustment!

Arguments
Name Description
data - UpdateLossCategoriesInput!

Example

Query
mutation updateAdjustmentLossCategories($data: UpdateLossCategoriesInput!) {
  updateAdjustmentLossCategories(data: $data) {
    actions {
      ...AdjustmentActionFragment
    }
    airframes {
      ...AdjustmentAirframeFragment
    }
    allocations {
      ...AdjustmentAllocationFragment
    }
    categories
    collaborators {
      ...ActorFragment
    }
    costsExpenses {
      ...AdjustmentCostsExpensesFragment
    }
    creationDate
    documents {
      ...FileMetadataFragment
    }
    executiveSummary
    expert {
      ...ActorFragment
    }
    fees {
      ...AdjustmentFeesFragment
    }
    flights {
      ...AdjustmentFlightFragment
    }
    id
    images {
      ...FileMetadataFragment
    }
    indemnity {
      ...AdjustmentIndemnityFragment
    }
    labels {
      ...AdjustmentLabelFragment
    }
    lastUpdateDate
    legalEntities {
      ...AdjustmentLegalEntitiesFragment
    }
    lossDate
    lossLocation {
      ...LocationFragment
    }
    lossNotice {
      ...LossNoticeFragment
    }
    marketReferences {
      ...MarketReferenceFragment
    }
    operation {
      ...ActorFragment
    }
    owner {
      ...ActorFragment
    }
    recommendations
    reportDate
    reporter {
      ...ActorFragment
    }
    reportingCurrency
    reports {
      ...AdjustmentReportFragment
    }
    stakeholderReferences {
      ...StakeholderReferenceFragment
    }
    status
    statusHistory {
      ...AdjustmentStatusChangeFragment
    }
    transitions {
      ...AdjustmentTransitionFragment
    }
    unpublishedChanges
    zone {
      ...ZoneFragment
    }
  }
}
Variables
{"data": UpdateLossCategoriesInput}
Response
{
  "data": {
    "updateAdjustmentLossCategories": {
      "actions": [AdjustmentAction],
      "airframes": [AdjustmentAirframe],
      "allocations": [AdjustmentAllocation],
      "categories": ["aircraft_hull"],
      "collaborators": [Actor],
      "costsExpenses": AdjustmentCostsExpenses,
      "creationDate": "2007-12-03T10:15:30Z",
      "documents": [FileMetadata],
      "executiveSummary": {},
      "expert": Actor,
      "fees": AdjustmentFees,
      "flights": [AdjustmentFlight],
      "id": "abc123",
      "images": [FileMetadata],
      "indemnity": AdjustmentIndemnity,
      "labels": [AdjustmentLabel],
      "lastUpdateDate": "2007-12-03T10:15:30Z",
      "legalEntities": AdjustmentLegalEntities,
      "lossDate": "2007-12-03T10:15:30Z",
      "lossLocation": Location,
      "lossNotice": LossNotice,
      "marketReferences": [MarketReference],
      "operation": Actor,
      "owner": Actor,
      "recommendations": {},
      "reportDate": "2007-12-03T10:15:30Z",
      "reporter": Actor,
      "reportingCurrency": "xyz789",
      "reports": [AdjustmentReport],
      "stakeholderReferences": [StakeholderReference],
      "status": "abeyance",
      "statusHistory": [AdjustmentStatusChange],
      "transitions": [AdjustmentTransition],
      "unpublishedChanges": true,
      "zone": Zone
    }
  }
}

updateAdjustmentLossDate

Description

Update the date of Loss of an Adjustment

Response

Returns an Adjustment!

Arguments
Name Description
data - UpdateAdjustmentLossDateInput!

Example

Query
mutation updateAdjustmentLossDate($data: UpdateAdjustmentLossDateInput!) {
  updateAdjustmentLossDate(data: $data) {
    actions {
      ...AdjustmentActionFragment
    }
    airframes {
      ...AdjustmentAirframeFragment
    }
    allocations {
      ...AdjustmentAllocationFragment
    }
    categories
    collaborators {
      ...ActorFragment
    }
    costsExpenses {
      ...AdjustmentCostsExpensesFragment
    }
    creationDate
    documents {
      ...FileMetadataFragment
    }
    executiveSummary
    expert {
      ...ActorFragment
    }
    fees {
      ...AdjustmentFeesFragment
    }
    flights {
      ...AdjustmentFlightFragment
    }
    id
    images {
      ...FileMetadataFragment
    }
    indemnity {
      ...AdjustmentIndemnityFragment
    }
    labels {
      ...AdjustmentLabelFragment
    }
    lastUpdateDate
    legalEntities {
      ...AdjustmentLegalEntitiesFragment
    }
    lossDate
    lossLocation {
      ...LocationFragment
    }
    lossNotice {
      ...LossNoticeFragment
    }
    marketReferences {
      ...MarketReferenceFragment
    }
    operation {
      ...ActorFragment
    }
    owner {
      ...ActorFragment
    }
    recommendations
    reportDate
    reporter {
      ...ActorFragment
    }
    reportingCurrency
    reports {
      ...AdjustmentReportFragment
    }
    stakeholderReferences {
      ...StakeholderReferenceFragment
    }
    status
    statusHistory {
      ...AdjustmentStatusChangeFragment
    }
    transitions {
      ...AdjustmentTransitionFragment
    }
    unpublishedChanges
    zone {
      ...ZoneFragment
    }
  }
}
Variables
{"data": UpdateAdjustmentLossDateInput}
Response
{
  "data": {
    "updateAdjustmentLossDate": {
      "actions": [AdjustmentAction],
      "airframes": [AdjustmentAirframe],
      "allocations": [AdjustmentAllocation],
      "categories": ["aircraft_hull"],
      "collaborators": [Actor],
      "costsExpenses": AdjustmentCostsExpenses,
      "creationDate": "2007-12-03T10:15:30Z",
      "documents": [FileMetadata],
      "executiveSummary": {},
      "expert": Actor,
      "fees": AdjustmentFees,
      "flights": [AdjustmentFlight],
      "id": "abc123",
      "images": [FileMetadata],
      "indemnity": AdjustmentIndemnity,
      "labels": [AdjustmentLabel],
      "lastUpdateDate": "2007-12-03T10:15:30Z",
      "legalEntities": AdjustmentLegalEntities,
      "lossDate": "2007-12-03T10:15:30Z",
      "lossLocation": Location,
      "lossNotice": LossNotice,
      "marketReferences": [MarketReference],
      "operation": Actor,
      "owner": Actor,
      "recommendations": {},
      "reportDate": "2007-12-03T10:15:30Z",
      "reporter": Actor,
      "reportingCurrency": "abc123",
      "reports": [AdjustmentReport],
      "stakeholderReferences": [StakeholderReference],
      "status": "abeyance",
      "statusHistory": [AdjustmentStatusChange],
      "transitions": [AdjustmentTransition],
      "unpublishedChanges": false,
      "zone": Zone
    }
  }
}

updateAdjustmentLossLocation

Description

Update the Loss Location of an Adjustment

Response

Returns an Adjustment!

Arguments
Name Description
data - UpdateLocationInput!

Example

Query
mutation updateAdjustmentLossLocation($data: UpdateLocationInput!) {
  updateAdjustmentLossLocation(data: $data) {
    actions {
      ...AdjustmentActionFragment
    }
    airframes {
      ...AdjustmentAirframeFragment
    }
    allocations {
      ...AdjustmentAllocationFragment
    }
    categories
    collaborators {
      ...ActorFragment
    }
    costsExpenses {
      ...AdjustmentCostsExpensesFragment
    }
    creationDate
    documents {
      ...FileMetadataFragment
    }
    executiveSummary
    expert {
      ...ActorFragment
    }
    fees {
      ...AdjustmentFeesFragment
    }
    flights {
      ...AdjustmentFlightFragment
    }
    id
    images {
      ...FileMetadataFragment
    }
    indemnity {
      ...AdjustmentIndemnityFragment
    }
    labels {
      ...AdjustmentLabelFragment
    }
    lastUpdateDate
    legalEntities {
      ...AdjustmentLegalEntitiesFragment
    }
    lossDate
    lossLocation {
      ...LocationFragment
    }
    lossNotice {
      ...LossNoticeFragment
    }
    marketReferences {
      ...MarketReferenceFragment
    }
    operation {
      ...ActorFragment
    }
    owner {
      ...ActorFragment
    }
    recommendations
    reportDate
    reporter {
      ...ActorFragment
    }
    reportingCurrency
    reports {
      ...AdjustmentReportFragment
    }
    stakeholderReferences {
      ...StakeholderReferenceFragment
    }
    status
    statusHistory {
      ...AdjustmentStatusChangeFragment
    }
    transitions {
      ...AdjustmentTransitionFragment
    }
    unpublishedChanges
    zone {
      ...ZoneFragment
    }
  }
}
Variables
{"data": UpdateLocationInput}
Response
{
  "data": {
    "updateAdjustmentLossLocation": {
      "actions": [AdjustmentAction],
      "airframes": [AdjustmentAirframe],
      "allocations": [AdjustmentAllocation],
      "categories": ["aircraft_hull"],
      "collaborators": [Actor],
      "costsExpenses": AdjustmentCostsExpenses,
      "creationDate": "2007-12-03T10:15:30Z",
      "documents": [FileMetadata],
      "executiveSummary": {},
      "expert": Actor,
      "fees": AdjustmentFees,
      "flights": [AdjustmentFlight],
      "id": "xyz789",
      "images": [FileMetadata],
      "indemnity": AdjustmentIndemnity,
      "labels": [AdjustmentLabel],
      "lastUpdateDate": "2007-12-03T10:15:30Z",
      "legalEntities": AdjustmentLegalEntities,
      "lossDate": "2007-12-03T10:15:30Z",
      "lossLocation": Location,
      "lossNotice": LossNotice,
      "marketReferences": [MarketReference],
      "operation": Actor,
      "owner": Actor,
      "recommendations": {},
      "reportDate": "2007-12-03T10:15:30Z",
      "reporter": Actor,
      "reportingCurrency": "abc123",
      "reports": [AdjustmentReport],
      "stakeholderReferences": [StakeholderReference],
      "status": "abeyance",
      "statusHistory": [AdjustmentStatusChange],
      "transitions": [AdjustmentTransition],
      "unpublishedChanges": false,
      "zone": Zone
    }
  }
}

updateAdjustmentMarketReference

Response

Returns an Adjustment!

Arguments
Name Description
data - UpdateMarketReferenceInput!

Example

Query
mutation updateAdjustmentMarketReference($data: UpdateMarketReferenceInput!) {
  updateAdjustmentMarketReference(data: $data) {
    actions {
      ...AdjustmentActionFragment
    }
    airframes {
      ...AdjustmentAirframeFragment
    }
    allocations {
      ...AdjustmentAllocationFragment
    }
    categories
    collaborators {
      ...ActorFragment
    }
    costsExpenses {
      ...AdjustmentCostsExpensesFragment
    }
    creationDate
    documents {
      ...FileMetadataFragment
    }
    executiveSummary
    expert {
      ...ActorFragment
    }
    fees {
      ...AdjustmentFeesFragment
    }
    flights {
      ...AdjustmentFlightFragment
    }
    id
    images {
      ...FileMetadataFragment
    }
    indemnity {
      ...AdjustmentIndemnityFragment
    }
    labels {
      ...AdjustmentLabelFragment
    }
    lastUpdateDate
    legalEntities {
      ...AdjustmentLegalEntitiesFragment
    }
    lossDate
    lossLocation {
      ...LocationFragment
    }
    lossNotice {
      ...LossNoticeFragment
    }
    marketReferences {
      ...MarketReferenceFragment
    }
    operation {
      ...ActorFragment
    }
    owner {
      ...ActorFragment
    }
    recommendations
    reportDate
    reporter {
      ...ActorFragment
    }
    reportingCurrency
    reports {
      ...AdjustmentReportFragment
    }
    stakeholderReferences {
      ...StakeholderReferenceFragment
    }
    status
    statusHistory {
      ...AdjustmentStatusChangeFragment
    }
    transitions {
      ...AdjustmentTransitionFragment
    }
    unpublishedChanges
    zone {
      ...ZoneFragment
    }
  }
}
Variables
{"data": UpdateMarketReferenceInput}
Response
{
  "data": {
    "updateAdjustmentMarketReference": {
      "actions": [AdjustmentAction],
      "airframes": [AdjustmentAirframe],
      "allocations": [AdjustmentAllocation],
      "categories": ["aircraft_hull"],
      "collaborators": [Actor],
      "costsExpenses": AdjustmentCostsExpenses,
      "creationDate": "2007-12-03T10:15:30Z",
      "documents": [FileMetadata],
      "executiveSummary": {},
      "expert": Actor,
      "fees": AdjustmentFees,
      "flights": [AdjustmentFlight],
      "id": "abc123",
      "images": [FileMetadata],
      "indemnity": AdjustmentIndemnity,
      "labels": [AdjustmentLabel],
      "lastUpdateDate": "2007-12-03T10:15:30Z",
      "legalEntities": AdjustmentLegalEntities,
      "lossDate": "2007-12-03T10:15:30Z",
      "lossLocation": Location,
      "lossNotice": LossNotice,
      "marketReferences": [MarketReference],
      "operation": Actor,
      "owner": Actor,
      "recommendations": {},
      "reportDate": "2007-12-03T10:15:30Z",
      "reporter": Actor,
      "reportingCurrency": "xyz789",
      "reports": [AdjustmentReport],
      "stakeholderReferences": [StakeholderReference],
      "status": "abeyance",
      "statusHistory": [AdjustmentStatusChange],
      "transitions": [AdjustmentTransition],
      "unpublishedChanges": true,
      "zone": Zone
    }
  }
}

updateAdjustmentOperation

Description

Update the Operation of an Adjustment

Response

Returns an Adjustment!

Arguments
Name Description
data - UpdateOperationInput!

Example

Query
mutation updateAdjustmentOperation($data: UpdateOperationInput!) {
  updateAdjustmentOperation(data: $data) {
    actions {
      ...AdjustmentActionFragment
    }
    airframes {
      ...AdjustmentAirframeFragment
    }
    allocations {
      ...AdjustmentAllocationFragment
    }
    categories
    collaborators {
      ...ActorFragment
    }
    costsExpenses {
      ...AdjustmentCostsExpensesFragment
    }
    creationDate
    documents {
      ...FileMetadataFragment
    }
    executiveSummary
    expert {
      ...ActorFragment
    }
    fees {
      ...AdjustmentFeesFragment
    }
    flights {
      ...AdjustmentFlightFragment
    }
    id
    images {
      ...FileMetadataFragment
    }
    indemnity {
      ...AdjustmentIndemnityFragment
    }
    labels {
      ...AdjustmentLabelFragment
    }
    lastUpdateDate
    legalEntities {
      ...AdjustmentLegalEntitiesFragment
    }
    lossDate
    lossLocation {
      ...LocationFragment
    }
    lossNotice {
      ...LossNoticeFragment
    }
    marketReferences {
      ...MarketReferenceFragment
    }
    operation {
      ...ActorFragment
    }
    owner {
      ...ActorFragment
    }
    recommendations
    reportDate
    reporter {
      ...ActorFragment
    }
    reportingCurrency
    reports {
      ...AdjustmentReportFragment
    }
    stakeholderReferences {
      ...StakeholderReferenceFragment
    }
    status
    statusHistory {
      ...AdjustmentStatusChangeFragment
    }
    transitions {
      ...AdjustmentTransitionFragment
    }
    unpublishedChanges
    zone {
      ...ZoneFragment
    }
  }
}
Variables
{"data": UpdateOperationInput}
Response
{
  "data": {
    "updateAdjustmentOperation": {
      "actions": [AdjustmentAction],
      "airframes": [AdjustmentAirframe],
      "allocations": [AdjustmentAllocation],
      "categories": ["aircraft_hull"],
      "collaborators": [Actor],
      "costsExpenses": AdjustmentCostsExpenses,
      "creationDate": "2007-12-03T10:15:30Z",
      "documents": [FileMetadata],
      "executiveSummary": {},
      "expert": Actor,
      "fees": AdjustmentFees,
      "flights": [AdjustmentFlight],
      "id": "abc123",
      "images": [FileMetadata],
      "indemnity": AdjustmentIndemnity,
      "labels": [AdjustmentLabel],
      "lastUpdateDate": "2007-12-03T10:15:30Z",
      "legalEntities": AdjustmentLegalEntities,
      "lossDate": "2007-12-03T10:15:30Z",
      "lossLocation": Location,
      "lossNotice": LossNotice,
      "marketReferences": [MarketReference],
      "operation": Actor,
      "owner": Actor,
      "recommendations": {},
      "reportDate": "2007-12-03T10:15:30Z",
      "reporter": Actor,
      "reportingCurrency": "xyz789",
      "reports": [AdjustmentReport],
      "stakeholderReferences": [StakeholderReference],
      "status": "abeyance",
      "statusHistory": [AdjustmentStatusChange],
      "transitions": [AdjustmentTransition],
      "unpublishedChanges": true,
      "zone": Zone
    }
  }
}

updateAdjustmentOwner

Description

Update the Owner of an Adjustment

Response

Returns an Adjustment!

Arguments
Name Description
data - UpdateAdjustmentOwnerInput!

Example

Query
mutation updateAdjustmentOwner($data: UpdateAdjustmentOwnerInput!) {
  updateAdjustmentOwner(data: $data) {
    actions {
      ...AdjustmentActionFragment
    }
    airframes {
      ...AdjustmentAirframeFragment
    }
    allocations {
      ...AdjustmentAllocationFragment
    }
    categories
    collaborators {
      ...ActorFragment
    }
    costsExpenses {
      ...AdjustmentCostsExpensesFragment
    }
    creationDate
    documents {
      ...FileMetadataFragment
    }
    executiveSummary
    expert {
      ...ActorFragment
    }
    fees {
      ...AdjustmentFeesFragment
    }
    flights {
      ...AdjustmentFlightFragment
    }
    id
    images {
      ...FileMetadataFragment
    }
    indemnity {
      ...AdjustmentIndemnityFragment
    }
    labels {
      ...AdjustmentLabelFragment
    }
    lastUpdateDate
    legalEntities {
      ...AdjustmentLegalEntitiesFragment
    }
    lossDate
    lossLocation {
      ...LocationFragment
    }
    lossNotice {
      ...LossNoticeFragment
    }
    marketReferences {
      ...MarketReferenceFragment
    }
    operation {
      ...ActorFragment
    }
    owner {
      ...ActorFragment
    }
    recommendations
    reportDate
    reporter {
      ...ActorFragment
    }
    reportingCurrency
    reports {
      ...AdjustmentReportFragment
    }
    stakeholderReferences {
      ...StakeholderReferenceFragment
    }
    status
    statusHistory {
      ...AdjustmentStatusChangeFragment
    }
    transitions {
      ...AdjustmentTransitionFragment
    }
    unpublishedChanges
    zone {
      ...ZoneFragment
    }
  }
}
Variables
{"data": UpdateAdjustmentOwnerInput}
Response
{
  "data": {
    "updateAdjustmentOwner": {
      "actions": [AdjustmentAction],
      "airframes": [AdjustmentAirframe],
      "allocations": [AdjustmentAllocation],
      "categories": ["aircraft_hull"],
      "collaborators": [Actor],
      "costsExpenses": AdjustmentCostsExpenses,
      "creationDate": "2007-12-03T10:15:30Z",
      "documents": [FileMetadata],
      "executiveSummary": {},
      "expert": Actor,
      "fees": AdjustmentFees,
      "flights": [AdjustmentFlight],
      "id": "abc123",
      "images": [FileMetadata],
      "indemnity": AdjustmentIndemnity,
      "labels": [AdjustmentLabel],
      "lastUpdateDate": "2007-12-03T10:15:30Z",
      "legalEntities": AdjustmentLegalEntities,
      "lossDate": "2007-12-03T10:15:30Z",
      "lossLocation": Location,
      "lossNotice": LossNotice,
      "marketReferences": [MarketReference],
      "operation": Actor,
      "owner": Actor,
      "recommendations": {},
      "reportDate": "2007-12-03T10:15:30Z",
      "reporter": Actor,
      "reportingCurrency": "abc123",
      "reports": [AdjustmentReport],
      "stakeholderReferences": [StakeholderReference],
      "status": "abeyance",
      "statusHistory": [AdjustmentStatusChange],
      "transitions": [AdjustmentTransition],
      "unpublishedChanges": false,
      "zone": Zone
    }
  }
}

updateAdjustmentPolicy

Description

Update a Policy assigned with the Adjustment

Response

Returns an Adjustment!

Arguments
Name Description
data - UpdateAdjustmentPolicyInput!

Example

Query
mutation updateAdjustmentPolicy($data: UpdateAdjustmentPolicyInput!) {
  updateAdjustmentPolicy(data: $data) {
    actions {
      ...AdjustmentActionFragment
    }
    airframes {
      ...AdjustmentAirframeFragment
    }
    allocations {
      ...AdjustmentAllocationFragment
    }
    categories
    collaborators {
      ...ActorFragment
    }
    costsExpenses {
      ...AdjustmentCostsExpensesFragment
    }
    creationDate
    documents {
      ...FileMetadataFragment
    }
    executiveSummary
    expert {
      ...ActorFragment
    }
    fees {
      ...AdjustmentFeesFragment
    }
    flights {
      ...AdjustmentFlightFragment
    }
    id
    images {
      ...FileMetadataFragment
    }
    indemnity {
      ...AdjustmentIndemnityFragment
    }
    labels {
      ...AdjustmentLabelFragment
    }
    lastUpdateDate
    legalEntities {
      ...AdjustmentLegalEntitiesFragment
    }
    lossDate
    lossLocation {
      ...LocationFragment
    }
    lossNotice {
      ...LossNoticeFragment
    }
    marketReferences {
      ...MarketReferenceFragment
    }
    operation {
      ...ActorFragment
    }
    owner {
      ...ActorFragment
    }
    recommendations
    reportDate
    reporter {
      ...ActorFragment
    }
    reportingCurrency
    reports {
      ...AdjustmentReportFragment
    }
    stakeholderReferences {
      ...StakeholderReferenceFragment
    }
    status
    statusHistory {
      ...AdjustmentStatusChangeFragment
    }
    transitions {
      ...AdjustmentTransitionFragment
    }
    unpublishedChanges
    zone {
      ...ZoneFragment
    }
  }
}
Variables
{"data": UpdateAdjustmentPolicyInput}
Response
{
  "data": {
    "updateAdjustmentPolicy": {
      "actions": [AdjustmentAction],
      "airframes": [AdjustmentAirframe],
      "allocations": [AdjustmentAllocation],
      "categories": ["aircraft_hull"],
      "collaborators": [Actor],
      "costsExpenses": AdjustmentCostsExpenses,
      "creationDate": "2007-12-03T10:15:30Z",
      "documents": [FileMetadata],
      "executiveSummary": {},
      "expert": Actor,
      "fees": AdjustmentFees,
      "flights": [AdjustmentFlight],
      "id": "abc123",
      "images": [FileMetadata],
      "indemnity": AdjustmentIndemnity,
      "labels": [AdjustmentLabel],
      "lastUpdateDate": "2007-12-03T10:15:30Z",
      "legalEntities": AdjustmentLegalEntities,
      "lossDate": "2007-12-03T10:15:30Z",
      "lossLocation": Location,
      "lossNotice": LossNotice,
      "marketReferences": [MarketReference],
      "operation": Actor,
      "owner": Actor,
      "recommendations": {},
      "reportDate": "2007-12-03T10:15:30Z",
      "reporter": Actor,
      "reportingCurrency": "abc123",
      "reports": [AdjustmentReport],
      "stakeholderReferences": [StakeholderReference],
      "status": "abeyance",
      "statusHistory": [AdjustmentStatusChange],
      "transitions": [AdjustmentTransition],
      "unpublishedChanges": false,
      "zone": Zone
    }
  }
}

updateAdjustmentPolicyAllocationLine

Description

Update a Policy Allocation Line assigned to the Adjustment

Response

Returns an Adjustment!

Arguments
Name Description
data - UpdateAdjustmentPolicyAllocationLineInput!

Example

Query
mutation updateAdjustmentPolicyAllocationLine($data: UpdateAdjustmentPolicyAllocationLineInput!) {
  updateAdjustmentPolicyAllocationLine(data: $data) {
    actions {
      ...AdjustmentActionFragment
    }
    airframes {
      ...AdjustmentAirframeFragment
    }
    allocations {
      ...AdjustmentAllocationFragment
    }
    categories
    collaborators {
      ...ActorFragment
    }
    costsExpenses {
      ...AdjustmentCostsExpensesFragment
    }
    creationDate
    documents {
      ...FileMetadataFragment
    }
    executiveSummary
    expert {
      ...ActorFragment
    }
    fees {
      ...AdjustmentFeesFragment
    }
    flights {
      ...AdjustmentFlightFragment
    }
    id
    images {
      ...FileMetadataFragment
    }
    indemnity {
      ...AdjustmentIndemnityFragment
    }
    labels {
      ...AdjustmentLabelFragment
    }
    lastUpdateDate
    legalEntities {
      ...AdjustmentLegalEntitiesFragment
    }
    lossDate
    lossLocation {
      ...LocationFragment
    }
    lossNotice {
      ...LossNoticeFragment
    }
    marketReferences {
      ...MarketReferenceFragment
    }
    operation {
      ...ActorFragment
    }
    owner {
      ...ActorFragment
    }
    recommendations
    reportDate
    reporter {
      ...ActorFragment
    }
    reportingCurrency
    reports {
      ...AdjustmentReportFragment
    }
    stakeholderReferences {
      ...StakeholderReferenceFragment
    }
    status
    statusHistory {
      ...AdjustmentStatusChangeFragment
    }
    transitions {
      ...AdjustmentTransitionFragment
    }
    unpublishedChanges
    zone {
      ...ZoneFragment
    }
  }
}
Variables
{"data": UpdateAdjustmentPolicyAllocationLineInput}
Response
{
  "data": {
    "updateAdjustmentPolicyAllocationLine": {
      "actions": [AdjustmentAction],
      "airframes": [AdjustmentAirframe],
      "allocations": [AdjustmentAllocation],
      "categories": ["aircraft_hull"],
      "collaborators": [Actor],
      "costsExpenses": AdjustmentCostsExpenses,
      "creationDate": "2007-12-03T10:15:30Z",
      "documents": [FileMetadata],
      "executiveSummary": {},
      "expert": Actor,
      "fees": AdjustmentFees,
      "flights": [AdjustmentFlight],
      "id": "abc123",
      "images": [FileMetadata],
      "indemnity": AdjustmentIndemnity,
      "labels": [AdjustmentLabel],
      "lastUpdateDate": "2007-12-03T10:15:30Z",
      "legalEntities": AdjustmentLegalEntities,
      "lossDate": "2007-12-03T10:15:30Z",
      "lossLocation": Location,
      "lossNotice": LossNotice,
      "marketReferences": [MarketReference],
      "operation": Actor,
      "owner": Actor,
      "recommendations": {},
      "reportDate": "2007-12-03T10:15:30Z",
      "reporter": Actor,
      "reportingCurrency": "abc123",
      "reports": [AdjustmentReport],
      "stakeholderReferences": [StakeholderReference],
      "status": "abeyance",
      "statusHistory": [AdjustmentStatusChange],
      "transitions": [AdjustmentTransition],
      "unpublishedChanges": false,
      "zone": Zone
    }
  }
}

updateAdjustmentRecommendations

Description

Update the Recommendations of an Adjustment

Response

Returns an Adjustment!

Arguments
Name Description
data - UpdateAdjustmentRecommendationsInput!

Example

Query
mutation updateAdjustmentRecommendations($data: UpdateAdjustmentRecommendationsInput!) {
  updateAdjustmentRecommendations(data: $data) {
    actions {
      ...AdjustmentActionFragment
    }
    airframes {
      ...AdjustmentAirframeFragment
    }
    allocations {
      ...AdjustmentAllocationFragment
    }
    categories
    collaborators {
      ...ActorFragment
    }
    costsExpenses {
      ...AdjustmentCostsExpensesFragment
    }
    creationDate
    documents {
      ...FileMetadataFragment
    }
    executiveSummary
    expert {
      ...ActorFragment
    }
    fees {
      ...AdjustmentFeesFragment
    }
    flights {
      ...AdjustmentFlightFragment
    }
    id
    images {
      ...FileMetadataFragment
    }
    indemnity {
      ...AdjustmentIndemnityFragment
    }
    labels {
      ...AdjustmentLabelFragment
    }
    lastUpdateDate
    legalEntities {
      ...AdjustmentLegalEntitiesFragment
    }
    lossDate
    lossLocation {
      ...LocationFragment
    }
    lossNotice {
      ...LossNoticeFragment
    }
    marketReferences {
      ...MarketReferenceFragment
    }
    operation {
      ...ActorFragment
    }
    owner {
      ...ActorFragment
    }
    recommendations
    reportDate
    reporter {
      ...ActorFragment
    }
    reportingCurrency
    reports {
      ...AdjustmentReportFragment
    }
    stakeholderReferences {
      ...StakeholderReferenceFragment
    }
    status
    statusHistory {
      ...AdjustmentStatusChangeFragment
    }
    transitions {
      ...AdjustmentTransitionFragment
    }
    unpublishedChanges
    zone {
      ...ZoneFragment
    }
  }
}
Variables
{"data": UpdateAdjustmentRecommendationsInput}
Response
{
  "data": {
    "updateAdjustmentRecommendations": {
      "actions": [AdjustmentAction],
      "airframes": [AdjustmentAirframe],
      "allocations": [AdjustmentAllocation],
      "categories": ["aircraft_hull"],
      "collaborators": [Actor],
      "costsExpenses": AdjustmentCostsExpenses,
      "creationDate": "2007-12-03T10:15:30Z",
      "documents": [FileMetadata],
      "executiveSummary": {},
      "expert": Actor,
      "fees": AdjustmentFees,
      "flights": [AdjustmentFlight],
      "id": "xyz789",
      "images": [FileMetadata],
      "indemnity": AdjustmentIndemnity,
      "labels": [AdjustmentLabel],
      "lastUpdateDate": "2007-12-03T10:15:30Z",
      "legalEntities": AdjustmentLegalEntities,
      "lossDate": "2007-12-03T10:15:30Z",
      "lossLocation": Location,
      "lossNotice": LossNotice,
      "marketReferences": [MarketReference],
      "operation": Actor,
      "owner": Actor,
      "recommendations": {},
      "reportDate": "2007-12-03T10:15:30Z",
      "reporter": Actor,
      "reportingCurrency": "abc123",
      "reports": [AdjustmentReport],
      "stakeholderReferences": [StakeholderReference],
      "status": "abeyance",
      "statusHistory": [AdjustmentStatusChange],
      "transitions": [AdjustmentTransition],
      "unpublishedChanges": true,
      "zone": Zone
    }
  }
}

updateAdjustmentReportDate

Description

Update the reporting date of an Adjustment

Response

Returns an Adjustment!

Arguments
Name Description
data - UpdateAdjustmentReportDateInput!

Example

Query
mutation updateAdjustmentReportDate($data: UpdateAdjustmentReportDateInput!) {
  updateAdjustmentReportDate(data: $data) {
    actions {
      ...AdjustmentActionFragment
    }
    airframes {
      ...AdjustmentAirframeFragment
    }
    allocations {
      ...AdjustmentAllocationFragment
    }
    categories
    collaborators {
      ...ActorFragment
    }
    costsExpenses {
      ...AdjustmentCostsExpensesFragment
    }
    creationDate
    documents {
      ...FileMetadataFragment
    }
    executiveSummary
    expert {
      ...ActorFragment
    }
    fees {
      ...AdjustmentFeesFragment
    }
    flights {
      ...AdjustmentFlightFragment
    }
    id
    images {
      ...FileMetadataFragment
    }
    indemnity {
      ...AdjustmentIndemnityFragment
    }
    labels {
      ...AdjustmentLabelFragment
    }
    lastUpdateDate
    legalEntities {
      ...AdjustmentLegalEntitiesFragment
    }
    lossDate
    lossLocation {
      ...LocationFragment
    }
    lossNotice {
      ...LossNoticeFragment
    }
    marketReferences {
      ...MarketReferenceFragment
    }
    operation {
      ...ActorFragment
    }
    owner {
      ...ActorFragment
    }
    recommendations
    reportDate
    reporter {
      ...ActorFragment
    }
    reportingCurrency
    reports {
      ...AdjustmentReportFragment
    }
    stakeholderReferences {
      ...StakeholderReferenceFragment
    }
    status
    statusHistory {
      ...AdjustmentStatusChangeFragment
    }
    transitions {
      ...AdjustmentTransitionFragment
    }
    unpublishedChanges
    zone {
      ...ZoneFragment
    }
  }
}
Variables
{"data": UpdateAdjustmentReportDateInput}
Response
{
  "data": {
    "updateAdjustmentReportDate": {
      "actions": [AdjustmentAction],
      "airframes": [AdjustmentAirframe],
      "allocations": [AdjustmentAllocation],
      "categories": ["aircraft_hull"],
      "collaborators": [Actor],
      "costsExpenses": AdjustmentCostsExpenses,
      "creationDate": "2007-12-03T10:15:30Z",
      "documents": [FileMetadata],
      "executiveSummary": {},
      "expert": Actor,
      "fees": AdjustmentFees,
      "flights": [AdjustmentFlight],
      "id": "xyz789",
      "images": [FileMetadata],
      "indemnity": AdjustmentIndemnity,
      "labels": [AdjustmentLabel],
      "lastUpdateDate": "2007-12-03T10:15:30Z",
      "legalEntities": AdjustmentLegalEntities,
      "lossDate": "2007-12-03T10:15:30Z",
      "lossLocation": Location,
      "lossNotice": LossNotice,
      "marketReferences": [MarketReference],
      "operation": Actor,
      "owner": Actor,
      "recommendations": {},
      "reportDate": "2007-12-03T10:15:30Z",
      "reporter": Actor,
      "reportingCurrency": "abc123",
      "reports": [AdjustmentReport],
      "stakeholderReferences": [StakeholderReference],
      "status": "abeyance",
      "statusHistory": [AdjustmentStatusChange],
      "transitions": [AdjustmentTransition],
      "unpublishedChanges": false,
      "zone": Zone
    }
  }
}

updateAdjustmentReporter

Description

Update the Reporter of an Adjustment

Response

Returns an Adjustment!

Arguments
Name Description
data - UpdateReporterInput!

Example

Query
mutation updateAdjustmentReporter($data: UpdateReporterInput!) {
  updateAdjustmentReporter(data: $data) {
    actions {
      ...AdjustmentActionFragment
    }
    airframes {
      ...AdjustmentAirframeFragment
    }
    allocations {
      ...AdjustmentAllocationFragment
    }
    categories
    collaborators {
      ...ActorFragment
    }
    costsExpenses {
      ...AdjustmentCostsExpensesFragment
    }
    creationDate
    documents {
      ...FileMetadataFragment
    }
    executiveSummary
    expert {
      ...ActorFragment
    }
    fees {
      ...AdjustmentFeesFragment
    }
    flights {
      ...AdjustmentFlightFragment
    }
    id
    images {
      ...FileMetadataFragment
    }
    indemnity {
      ...AdjustmentIndemnityFragment
    }
    labels {
      ...AdjustmentLabelFragment
    }
    lastUpdateDate
    legalEntities {
      ...AdjustmentLegalEntitiesFragment
    }
    lossDate
    lossLocation {
      ...LocationFragment
    }
    lossNotice {
      ...LossNoticeFragment
    }
    marketReferences {
      ...MarketReferenceFragment
    }
    operation {
      ...ActorFragment
    }
    owner {
      ...ActorFragment
    }
    recommendations
    reportDate
    reporter {
      ...ActorFragment
    }
    reportingCurrency
    reports {
      ...AdjustmentReportFragment
    }
    stakeholderReferences {
      ...StakeholderReferenceFragment
    }
    status
    statusHistory {
      ...AdjustmentStatusChangeFragment
    }
    transitions {
      ...AdjustmentTransitionFragment
    }
    unpublishedChanges
    zone {
      ...ZoneFragment
    }
  }
}
Variables
{"data": UpdateReporterInput}
Response
{
  "data": {
    "updateAdjustmentReporter": {
      "actions": [AdjustmentAction],
      "airframes": [AdjustmentAirframe],
      "allocations": [AdjustmentAllocation],
      "categories": ["aircraft_hull"],
      "collaborators": [Actor],
      "costsExpenses": AdjustmentCostsExpenses,
      "creationDate": "2007-12-03T10:15:30Z",
      "documents": [FileMetadata],
      "executiveSummary": {},
      "expert": Actor,
      "fees": AdjustmentFees,
      "flights": [AdjustmentFlight],
      "id": "xyz789",
      "images": [FileMetadata],
      "indemnity": AdjustmentIndemnity,
      "labels": [AdjustmentLabel],
      "lastUpdateDate": "2007-12-03T10:15:30Z",
      "legalEntities": AdjustmentLegalEntities,
      "lossDate": "2007-12-03T10:15:30Z",
      "lossLocation": Location,
      "lossNotice": LossNotice,
      "marketReferences": [MarketReference],
      "operation": Actor,
      "owner": Actor,
      "recommendations": {},
      "reportDate": "2007-12-03T10:15:30Z",
      "reporter": Actor,
      "reportingCurrency": "abc123",
      "reports": [AdjustmentReport],
      "stakeholderReferences": [StakeholderReference],
      "status": "abeyance",
      "statusHistory": [AdjustmentStatusChange],
      "transitions": [AdjustmentTransition],
      "unpublishedChanges": false,
      "zone": Zone
    }
  }
}

updateAdjustmentReportingCurrency

Description

Update the reporting currency of an Adjustment

Response

Returns an Adjustment!

Arguments
Name Description
data - UpdateAdjustmentReportingCurrencyInput!

Example

Query
mutation updateAdjustmentReportingCurrency($data: UpdateAdjustmentReportingCurrencyInput!) {
  updateAdjustmentReportingCurrency(data: $data) {
    actions {
      ...AdjustmentActionFragment
    }
    airframes {
      ...AdjustmentAirframeFragment
    }
    allocations {
      ...AdjustmentAllocationFragment
    }
    categories
    collaborators {
      ...ActorFragment
    }
    costsExpenses {
      ...AdjustmentCostsExpensesFragment
    }
    creationDate
    documents {
      ...FileMetadataFragment
    }
    executiveSummary
    expert {
      ...ActorFragment
    }
    fees {
      ...AdjustmentFeesFragment
    }
    flights {
      ...AdjustmentFlightFragment
    }
    id
    images {
      ...FileMetadataFragment
    }
    indemnity {
      ...AdjustmentIndemnityFragment
    }
    labels {
      ...AdjustmentLabelFragment
    }
    lastUpdateDate
    legalEntities {
      ...AdjustmentLegalEntitiesFragment
    }
    lossDate
    lossLocation {
      ...LocationFragment
    }
    lossNotice {
      ...LossNoticeFragment
    }
    marketReferences {
      ...MarketReferenceFragment
    }
    operation {
      ...ActorFragment
    }
    owner {
      ...ActorFragment
    }
    recommendations
    reportDate
    reporter {
      ...ActorFragment
    }
    reportingCurrency
    reports {
      ...AdjustmentReportFragment
    }
    stakeholderReferences {
      ...StakeholderReferenceFragment
    }
    status
    statusHistory {
      ...AdjustmentStatusChangeFragment
    }
    transitions {
      ...AdjustmentTransitionFragment
    }
    unpublishedChanges
    zone {
      ...ZoneFragment
    }
  }
}
Variables
{"data": UpdateAdjustmentReportingCurrencyInput}
Response
{
  "data": {
    "updateAdjustmentReportingCurrency": {
      "actions": [AdjustmentAction],
      "airframes": [AdjustmentAirframe],
      "allocations": [AdjustmentAllocation],
      "categories": ["aircraft_hull"],
      "collaborators": [Actor],
      "costsExpenses": AdjustmentCostsExpenses,
      "creationDate": "2007-12-03T10:15:30Z",
      "documents": [FileMetadata],
      "executiveSummary": {},
      "expert": Actor,
      "fees": AdjustmentFees,
      "flights": [AdjustmentFlight],
      "id": "abc123",
      "images": [FileMetadata],
      "indemnity": AdjustmentIndemnity,
      "labels": [AdjustmentLabel],
      "lastUpdateDate": "2007-12-03T10:15:30Z",
      "legalEntities": AdjustmentLegalEntities,
      "lossDate": "2007-12-03T10:15:30Z",
      "lossLocation": Location,
      "lossNotice": LossNotice,
      "marketReferences": [MarketReference],
      "operation": Actor,
      "owner": Actor,
      "recommendations": {},
      "reportDate": "2007-12-03T10:15:30Z",
      "reporter": Actor,
      "reportingCurrency": "xyz789",
      "reports": [AdjustmentReport],
      "stakeholderReferences": [StakeholderReference],
      "status": "abeyance",
      "statusHistory": [AdjustmentStatusChange],
      "transitions": [AdjustmentTransition],
      "unpublishedChanges": true,
      "zone": Zone
    }
  }
}

updateAdjustmentRetainedAllocationLine

Description

Update a retained Allocation Line of an Adjustment

Response

Returns an Adjustment!

Arguments
Name Description
data - UpdateAdjustmentRetainedAllocationLineInput!

Example

Query
mutation updateAdjustmentRetainedAllocationLine($data: UpdateAdjustmentRetainedAllocationLineInput!) {
  updateAdjustmentRetainedAllocationLine(data: $data) {
    actions {
      ...AdjustmentActionFragment
    }
    airframes {
      ...AdjustmentAirframeFragment
    }
    allocations {
      ...AdjustmentAllocationFragment
    }
    categories
    collaborators {
      ...ActorFragment
    }
    costsExpenses {
      ...AdjustmentCostsExpensesFragment
    }
    creationDate
    documents {
      ...FileMetadataFragment
    }
    executiveSummary
    expert {
      ...ActorFragment
    }
    fees {
      ...AdjustmentFeesFragment
    }
    flights {
      ...AdjustmentFlightFragment
    }
    id
    images {
      ...FileMetadataFragment
    }
    indemnity {
      ...AdjustmentIndemnityFragment
    }
    labels {
      ...AdjustmentLabelFragment
    }
    lastUpdateDate
    legalEntities {
      ...AdjustmentLegalEntitiesFragment
    }
    lossDate
    lossLocation {
      ...LocationFragment
    }
    lossNotice {
      ...LossNoticeFragment
    }
    marketReferences {
      ...MarketReferenceFragment
    }
    operation {
      ...ActorFragment
    }
    owner {
      ...ActorFragment
    }
    recommendations
    reportDate
    reporter {
      ...ActorFragment
    }
    reportingCurrency
    reports {
      ...AdjustmentReportFragment
    }
    stakeholderReferences {
      ...StakeholderReferenceFragment
    }
    status
    statusHistory {
      ...AdjustmentStatusChangeFragment
    }
    transitions {
      ...AdjustmentTransitionFragment
    }
    unpublishedChanges
    zone {
      ...ZoneFragment
    }
  }
}
Variables
{"data": UpdateAdjustmentRetainedAllocationLineInput}
Response
{
  "data": {
    "updateAdjustmentRetainedAllocationLine": {
      "actions": [AdjustmentAction],
      "airframes": [AdjustmentAirframe],
      "allocations": [AdjustmentAllocation],
      "categories": ["aircraft_hull"],
      "collaborators": [Actor],
      "costsExpenses": AdjustmentCostsExpenses,
      "creationDate": "2007-12-03T10:15:30Z",
      "documents": [FileMetadata],
      "executiveSummary": {},
      "expert": Actor,
      "fees": AdjustmentFees,
      "flights": [AdjustmentFlight],
      "id": "xyz789",
      "images": [FileMetadata],
      "indemnity": AdjustmentIndemnity,
      "labels": [AdjustmentLabel],
      "lastUpdateDate": "2007-12-03T10:15:30Z",
      "legalEntities": AdjustmentLegalEntities,
      "lossDate": "2007-12-03T10:15:30Z",
      "lossLocation": Location,
      "lossNotice": LossNotice,
      "marketReferences": [MarketReference],
      "operation": Actor,
      "owner": Actor,
      "recommendations": {},
      "reportDate": "2007-12-03T10:15:30Z",
      "reporter": Actor,
      "reportingCurrency": "abc123",
      "reports": [AdjustmentReport],
      "stakeholderReferences": [StakeholderReference],
      "status": "abeyance",
      "statusHistory": [AdjustmentStatusChange],
      "transitions": [AdjustmentTransition],
      "unpublishedChanges": true,
      "zone": Zone
    }
  }
}

updateAdjustmentStakeholderReference

Description

Update a Stakeholder Reference of an Adjustment

Response

Returns an Adjustment!

Arguments
Name Description
data - UpdateStakeholderReferenceInput!

Example

Query
mutation updateAdjustmentStakeholderReference($data: UpdateStakeholderReferenceInput!) {
  updateAdjustmentStakeholderReference(data: $data) {
    actions {
      ...AdjustmentActionFragment
    }
    airframes {
      ...AdjustmentAirframeFragment
    }
    allocations {
      ...AdjustmentAllocationFragment
    }
    categories
    collaborators {
      ...ActorFragment
    }
    costsExpenses {
      ...AdjustmentCostsExpensesFragment
    }
    creationDate
    documents {
      ...FileMetadataFragment
    }
    executiveSummary
    expert {
      ...ActorFragment
    }
    fees {
      ...AdjustmentFeesFragment
    }
    flights {
      ...AdjustmentFlightFragment
    }
    id
    images {
      ...FileMetadataFragment
    }
    indemnity {
      ...AdjustmentIndemnityFragment
    }
    labels {
      ...AdjustmentLabelFragment
    }
    lastUpdateDate
    legalEntities {
      ...AdjustmentLegalEntitiesFragment
    }
    lossDate
    lossLocation {
      ...LocationFragment
    }
    lossNotice {
      ...LossNoticeFragment
    }
    marketReferences {
      ...MarketReferenceFragment
    }
    operation {
      ...ActorFragment
    }
    owner {
      ...ActorFragment
    }
    recommendations
    reportDate
    reporter {
      ...ActorFragment
    }
    reportingCurrency
    reports {
      ...AdjustmentReportFragment
    }
    stakeholderReferences {
      ...StakeholderReferenceFragment
    }
    status
    statusHistory {
      ...AdjustmentStatusChangeFragment
    }
    transitions {
      ...AdjustmentTransitionFragment
    }
    unpublishedChanges
    zone {
      ...ZoneFragment
    }
  }
}
Variables
{"data": UpdateStakeholderReferenceInput}
Response
{
  "data": {
    "updateAdjustmentStakeholderReference": {
      "actions": [AdjustmentAction],
      "airframes": [AdjustmentAirframe],
      "allocations": [AdjustmentAllocation],
      "categories": ["aircraft_hull"],
      "collaborators": [Actor],
      "costsExpenses": AdjustmentCostsExpenses,
      "creationDate": "2007-12-03T10:15:30Z",
      "documents": [FileMetadata],
      "executiveSummary": {},
      "expert": Actor,
      "fees": AdjustmentFees,
      "flights": [AdjustmentFlight],
      "id": "xyz789",
      "images": [FileMetadata],
      "indemnity": AdjustmentIndemnity,
      "labels": [AdjustmentLabel],
      "lastUpdateDate": "2007-12-03T10:15:30Z",
      "legalEntities": AdjustmentLegalEntities,
      "lossDate": "2007-12-03T10:15:30Z",
      "lossLocation": Location,
      "lossNotice": LossNotice,
      "marketReferences": [MarketReference],
      "operation": Actor,
      "owner": Actor,
      "recommendations": {},
      "reportDate": "2007-12-03T10:15:30Z",
      "reporter": Actor,
      "reportingCurrency": "xyz789",
      "reports": [AdjustmentReport],
      "stakeholderReferences": [StakeholderReference],
      "status": "abeyance",
      "statusHistory": [AdjustmentStatusChange],
      "transitions": [AdjustmentTransition],
      "unpublishedChanges": false,
      "zone": Zone
    }
  }
}

updateAdjustmentStatus

Description

Update the Status of an Adjustment

Response

Returns an Adjustment!

Arguments
Name Description
data - UpdateAdjustmentStatusInput!

Example

Query
mutation updateAdjustmentStatus($data: UpdateAdjustmentStatusInput!) {
  updateAdjustmentStatus(data: $data) {
    actions {
      ...AdjustmentActionFragment
    }
    airframes {
      ...AdjustmentAirframeFragment
    }
    allocations {
      ...AdjustmentAllocationFragment
    }
    categories
    collaborators {
      ...ActorFragment
    }
    costsExpenses {
      ...AdjustmentCostsExpensesFragment
    }
    creationDate
    documents {
      ...FileMetadataFragment
    }
    executiveSummary
    expert {
      ...ActorFragment
    }
    fees {
      ...AdjustmentFeesFragment
    }
    flights {
      ...AdjustmentFlightFragment
    }
    id
    images {
      ...FileMetadataFragment
    }
    indemnity {
      ...AdjustmentIndemnityFragment
    }
    labels {
      ...AdjustmentLabelFragment
    }
    lastUpdateDate
    legalEntities {
      ...AdjustmentLegalEntitiesFragment
    }
    lossDate
    lossLocation {
      ...LocationFragment
    }
    lossNotice {
      ...LossNoticeFragment
    }
    marketReferences {
      ...MarketReferenceFragment
    }
    operation {
      ...ActorFragment
    }
    owner {
      ...ActorFragment
    }
    recommendations
    reportDate
    reporter {
      ...ActorFragment
    }
    reportingCurrency
    reports {
      ...AdjustmentReportFragment
    }
    stakeholderReferences {
      ...StakeholderReferenceFragment
    }
    status
    statusHistory {
      ...AdjustmentStatusChangeFragment
    }
    transitions {
      ...AdjustmentTransitionFragment
    }
    unpublishedChanges
    zone {
      ...ZoneFragment
    }
  }
}
Variables
{"data": UpdateAdjustmentStatusInput}
Response
{
  "data": {
    "updateAdjustmentStatus": {
      "actions": [AdjustmentAction],
      "airframes": [AdjustmentAirframe],
      "allocations": [AdjustmentAllocation],
      "categories": ["aircraft_hull"],
      "collaborators": [Actor],
      "costsExpenses": AdjustmentCostsExpenses,
      "creationDate": "2007-12-03T10:15:30Z",
      "documents": [FileMetadata],
      "executiveSummary": {},
      "expert": Actor,
      "fees": AdjustmentFees,
      "flights": [AdjustmentFlight],
      "id": "xyz789",
      "images": [FileMetadata],
      "indemnity": AdjustmentIndemnity,
      "labels": [AdjustmentLabel],
      "lastUpdateDate": "2007-12-03T10:15:30Z",
      "legalEntities": AdjustmentLegalEntities,
      "lossDate": "2007-12-03T10:15:30Z",
      "lossLocation": Location,
      "lossNotice": LossNotice,
      "marketReferences": [MarketReference],
      "operation": Actor,
      "owner": Actor,
      "recommendations": {},
      "reportDate": "2007-12-03T10:15:30Z",
      "reporter": Actor,
      "reportingCurrency": "abc123",
      "reports": [AdjustmentReport],
      "stakeholderReferences": [StakeholderReference],
      "status": "abeyance",
      "statusHistory": [AdjustmentStatusChange],
      "transitions": [AdjustmentTransition],
      "unpublishedChanges": true,
      "zone": Zone
    }
  }
}

updateCompany

Description

Update a Company/Organisation

Response

Returns a Company!

Arguments
Name Description
data - UpdateCompanyInput!

Example

Query
mutation updateCompany($data: UpdateCompanyInput!) {
  updateCompany(data: $data) {
    addressLine1
    addressLine2
    artwork {
      ...CompanyArtworkMetadataFragment
    }
    country {
      ...CountryFragment
    }
    county
    group {
      ...GroupFragment
    }
    id
    locality
    name
    postalCode
    region
    reportSettings {
      ...CompanyReportSettingsFragment
    }
    stampCodes
    streetName
    users {
      ...UserFragment
    }
  }
}
Variables
{"data": UpdateCompanyInput}
Response
{
  "data": {
    "updateCompany": {
      "addressLine1": "abc123",
      "addressLine2": "xyz789",
      "artwork": [CompanyArtworkMetadata],
      "country": Country,
      "county": "xyz789",
      "group": Group,
      "id": "xyz789",
      "locality": "abc123",
      "name": "xyz789",
      "postalCode": "abc123",
      "region": "abc123",
      "reportSettings": CompanyReportSettings,
      "stampCodes": ["abc123"],
      "streetName": "abc123",
      "users": [User]
    }
  }
}

updateCompanyReportSettings

Description

Update a Company/Organisation's report settings

Response

Returns a Company!

Arguments
Name Description
data - UpdateCompanyReportSettingsInput!

Example

Query
mutation updateCompanyReportSettings($data: UpdateCompanyReportSettingsInput!) {
  updateCompanyReportSettings(data: $data) {
    addressLine1
    addressLine2
    artwork {
      ...CompanyArtworkMetadataFragment
    }
    country {
      ...CountryFragment
    }
    county
    group {
      ...GroupFragment
    }
    id
    locality
    name
    postalCode
    region
    reportSettings {
      ...CompanyReportSettingsFragment
    }
    stampCodes
    streetName
    users {
      ...UserFragment
    }
  }
}
Variables
{"data": UpdateCompanyReportSettingsInput}
Response
{
  "data": {
    "updateCompanyReportSettings": {
      "addressLine1": "abc123",
      "addressLine2": "xyz789",
      "artwork": [CompanyArtworkMetadata],
      "country": Country,
      "county": "xyz789",
      "group": Group,
      "id": "xyz789",
      "locality": "abc123",
      "name": "abc123",
      "postalCode": "abc123",
      "region": "abc123",
      "reportSettings": CompanyReportSettings,
      "stampCodes": ["abc123"],
      "streetName": "xyz789",
      "users": [User]
    }
  }
}

updateCompanyStampCodes

Description

Update a Company/Organisation's stamp codes

Response

Returns a Company!

Arguments
Name Description
data - UpdateCompanyStampCodesInput!

Example

Query
mutation updateCompanyStampCodes($data: UpdateCompanyStampCodesInput!) {
  updateCompanyStampCodes(data: $data) {
    addressLine1
    addressLine2
    artwork {
      ...CompanyArtworkMetadataFragment
    }
    country {
      ...CountryFragment
    }
    county
    group {
      ...GroupFragment
    }
    id
    locality
    name
    postalCode
    region
    reportSettings {
      ...CompanyReportSettingsFragment
    }
    stampCodes
    streetName
    users {
      ...UserFragment
    }
  }
}
Variables
{"data": UpdateCompanyStampCodesInput}
Response
{
  "data": {
    "updateCompanyStampCodes": {
      "addressLine1": "abc123",
      "addressLine2": "xyz789",
      "artwork": [CompanyArtworkMetadata],
      "country": Country,
      "county": "abc123",
      "group": Group,
      "id": "xyz789",
      "locality": "xyz789",
      "name": "xyz789",
      "postalCode": "abc123",
      "region": "abc123",
      "reportSettings": CompanyReportSettings,
      "stampCodes": ["abc123"],
      "streetName": "xyz789",
      "users": [User]
    }
  }
}

updateLossNoticeAirframeEngine

Response

Returns a LossNotice!

Arguments
Name Description
data - UpdateLossNoticeAirframeEngineInput!

Example

Query
mutation updateLossNoticeAirframeEngine($data: UpdateLossNoticeAirframeEngineInput!) {
  updateLossNoticeAirframeEngine(data: $data) {
    actions
    airframes {
      ...LossNoticeAirframeFragment
    }
    categories
    creationDate
    documents {
      ...FileMetadataFragment
    }
    flights {
      ...LossNoticeFlightFragment
    }
    id
    images {
      ...FileMetadataFragment
    }
    labels {
      ...LossNoticeLabelFragment
    }
    lastUpdateDate
    lossDate
    lossLocation {
      ...LocationFragment
    }
    narrative
    operation {
      ...ActorFragment
    }
    reportDate
    reporter {
      ...ActorFragment
    }
    status
    zone {
      ...ZoneFragment
    }
  }
}
Variables
{"data": UpdateLossNoticeAirframeEngineInput}
Response
{
  "data": {
    "updateLossNoticeAirframeEngine": {
      "actions": ["create"],
      "airframes": [LossNoticeAirframe],
      "categories": ["aircraft_hull"],
      "creationDate": "2007-12-03T10:15:30Z",
      "documents": [FileMetadata],
      "flights": [LossNoticeFlight],
      "id": "xyz789",
      "images": [FileMetadata],
      "labels": [LossNoticeLabel],
      "lastUpdateDate": "2007-12-03T10:15:30Z",
      "lossDate": "2007-12-03T10:15:30Z",
      "lossLocation": Location,
      "narrative": {},
      "operation": Actor,
      "reportDate": "2007-12-03T10:15:30Z",
      "reporter": Actor,
      "status": "draft",
      "zone": Zone
    }
  }
}

updateLossNoticeAirframeEngineDamage

Response

Returns a LossNotice!

Arguments
Name Description
data - UpdateLossNoticeAirframeEngineDamageInput!

Example

Query
mutation updateLossNoticeAirframeEngineDamage($data: UpdateLossNoticeAirframeEngineDamageInput!) {
  updateLossNoticeAirframeEngineDamage(data: $data) {
    actions
    airframes {
      ...LossNoticeAirframeFragment
    }
    categories
    creationDate
    documents {
      ...FileMetadataFragment
    }
    flights {
      ...LossNoticeFlightFragment
    }
    id
    images {
      ...FileMetadataFragment
    }
    labels {
      ...LossNoticeLabelFragment
    }
    lastUpdateDate
    lossDate
    lossLocation {
      ...LocationFragment
    }
    narrative
    operation {
      ...ActorFragment
    }
    reportDate
    reporter {
      ...ActorFragment
    }
    status
    zone {
      ...ZoneFragment
    }
  }
}
Variables
{"data": UpdateLossNoticeAirframeEngineDamageInput}
Response
{
  "data": {
    "updateLossNoticeAirframeEngineDamage": {
      "actions": ["create"],
      "airframes": [LossNoticeAirframe],
      "categories": ["aircraft_hull"],
      "creationDate": "2007-12-03T10:15:30Z",
      "documents": [FileMetadata],
      "flights": [LossNoticeFlight],
      "id": "abc123",
      "images": [FileMetadata],
      "labels": [LossNoticeLabel],
      "lastUpdateDate": "2007-12-03T10:15:30Z",
      "lossDate": "2007-12-03T10:15:30Z",
      "lossLocation": Location,
      "narrative": {},
      "operation": Actor,
      "reportDate": "2007-12-03T10:15:30Z",
      "reporter": Actor,
      "status": "draft",
      "zone": Zone
    }
  }
}

updateLossNoticeAirframeEngineDamageNarrative

Response

Returns a LossNotice!

Arguments
Name Description
data - UpdateLossNoticeAirframeEngineDamageNarrativeInput!

Example

Query
mutation updateLossNoticeAirframeEngineDamageNarrative($data: UpdateLossNoticeAirframeEngineDamageNarrativeInput!) {
  updateLossNoticeAirframeEngineDamageNarrative(data: $data) {
    actions
    airframes {
      ...LossNoticeAirframeFragment
    }
    categories
    creationDate
    documents {
      ...FileMetadataFragment
    }
    flights {
      ...LossNoticeFlightFragment
    }
    id
    images {
      ...FileMetadataFragment
    }
    labels {
      ...LossNoticeLabelFragment
    }
    lastUpdateDate
    lossDate
    lossLocation {
      ...LocationFragment
    }
    narrative
    operation {
      ...ActorFragment
    }
    reportDate
    reporter {
      ...ActorFragment
    }
    status
    zone {
      ...ZoneFragment
    }
  }
}
Variables
{
  "data": UpdateLossNoticeAirframeEngineDamageNarrativeInput
}
Response
{
  "data": {
    "updateLossNoticeAirframeEngineDamageNarrative": {
      "actions": ["create"],
      "airframes": [LossNoticeAirframe],
      "categories": ["aircraft_hull"],
      "creationDate": "2007-12-03T10:15:30Z",
      "documents": [FileMetadata],
      "flights": [LossNoticeFlight],
      "id": "xyz789",
      "images": [FileMetadata],
      "labels": [LossNoticeLabel],
      "lastUpdateDate": "2007-12-03T10:15:30Z",
      "lossDate": "2007-12-03T10:15:30Z",
      "lossLocation": Location,
      "narrative": {},
      "operation": Actor,
      "reportDate": "2007-12-03T10:15:30Z",
      "reporter": Actor,
      "status": "draft",
      "zone": Zone
    }
  }
}

updateLossNoticeAirframePartDamage

Response

Returns a LossNotice!

Arguments
Name Description
data - UpdateLossNoticeAirframePartDamageInput!

Example

Query
mutation updateLossNoticeAirframePartDamage($data: UpdateLossNoticeAirframePartDamageInput!) {
  updateLossNoticeAirframePartDamage(data: $data) {
    actions
    airframes {
      ...LossNoticeAirframeFragment
    }
    categories
    creationDate
    documents {
      ...FileMetadataFragment
    }
    flights {
      ...LossNoticeFlightFragment
    }
    id
    images {
      ...FileMetadataFragment
    }
    labels {
      ...LossNoticeLabelFragment
    }
    lastUpdateDate
    lossDate
    lossLocation {
      ...LocationFragment
    }
    narrative
    operation {
      ...ActorFragment
    }
    reportDate
    reporter {
      ...ActorFragment
    }
    status
    zone {
      ...ZoneFragment
    }
  }
}
Variables
{"data": UpdateLossNoticeAirframePartDamageInput}
Response
{
  "data": {
    "updateLossNoticeAirframePartDamage": {
      "actions": ["create"],
      "airframes": [LossNoticeAirframe],
      "categories": ["aircraft_hull"],
      "creationDate": "2007-12-03T10:15:30Z",
      "documents": [FileMetadata],
      "flights": [LossNoticeFlight],
      "id": "xyz789",
      "images": [FileMetadata],
      "labels": [LossNoticeLabel],
      "lastUpdateDate": "2007-12-03T10:15:30Z",
      "lossDate": "2007-12-03T10:15:30Z",
      "lossLocation": Location,
      "narrative": {},
      "operation": Actor,
      "reportDate": "2007-12-03T10:15:30Z",
      "reporter": Actor,
      "status": "draft",
      "zone": Zone
    }
  }
}

updateLossNoticeAirframePartDamageNarrative

Response

Returns a LossNotice!

Arguments
Name Description
data - UpdateLossNoticeAirframePartDamageNarrativeInput!

Example

Query
mutation updateLossNoticeAirframePartDamageNarrative($data: UpdateLossNoticeAirframePartDamageNarrativeInput!) {
  updateLossNoticeAirframePartDamageNarrative(data: $data) {
    actions
    airframes {
      ...LossNoticeAirframeFragment
    }
    categories
    creationDate
    documents {
      ...FileMetadataFragment
    }
    flights {
      ...LossNoticeFlightFragment
    }
    id
    images {
      ...FileMetadataFragment
    }
    labels {
      ...LossNoticeLabelFragment
    }
    lastUpdateDate
    lossDate
    lossLocation {
      ...LocationFragment
    }
    narrative
    operation {
      ...ActorFragment
    }
    reportDate
    reporter {
      ...ActorFragment
    }
    status
    zone {
      ...ZoneFragment
    }
  }
}
Variables
{"data": UpdateLossNoticeAirframePartDamageNarrativeInput}
Response
{
  "data": {
    "updateLossNoticeAirframePartDamageNarrative": {
      "actions": ["create"],
      "airframes": [LossNoticeAirframe],
      "categories": ["aircraft_hull"],
      "creationDate": "2007-12-03T10:15:30Z",
      "documents": [FileMetadata],
      "flights": [LossNoticeFlight],
      "id": "abc123",
      "images": [FileMetadata],
      "labels": [LossNoticeLabel],
      "lastUpdateDate": "2007-12-03T10:15:30Z",
      "lossDate": "2007-12-03T10:15:30Z",
      "lossLocation": Location,
      "narrative": {},
      "operation": Actor,
      "reportDate": "2007-12-03T10:15:30Z",
      "reporter": Actor,
      "status": "draft",
      "zone": Zone
    }
  }
}

updateLossNoticeAirframeWorkload

Response

Returns a LossNotice!

Arguments
Name Description
data - UpdateLossNoticeAirframeWorkloadInput!

Example

Query
mutation updateLossNoticeAirframeWorkload($data: UpdateLossNoticeAirframeWorkloadInput!) {
  updateLossNoticeAirframeWorkload(data: $data) {
    actions
    airframes {
      ...LossNoticeAirframeFragment
    }
    categories
    creationDate
    documents {
      ...FileMetadataFragment
    }
    flights {
      ...LossNoticeFlightFragment
    }
    id
    images {
      ...FileMetadataFragment
    }
    labels {
      ...LossNoticeLabelFragment
    }
    lastUpdateDate
    lossDate
    lossLocation {
      ...LocationFragment
    }
    narrative
    operation {
      ...ActorFragment
    }
    reportDate
    reporter {
      ...ActorFragment
    }
    status
    zone {
      ...ZoneFragment
    }
  }
}
Variables
{"data": UpdateLossNoticeAirframeWorkloadInput}
Response
{
  "data": {
    "updateLossNoticeAirframeWorkload": {
      "actions": ["create"],
      "airframes": [LossNoticeAirframe],
      "categories": ["aircraft_hull"],
      "creationDate": "2007-12-03T10:15:30Z",
      "documents": [FileMetadata],
      "flights": [LossNoticeFlight],
      "id": "abc123",
      "images": [FileMetadata],
      "labels": [LossNoticeLabel],
      "lastUpdateDate": "2007-12-03T10:15:30Z",
      "lossDate": "2007-12-03T10:15:30Z",
      "lossLocation": Location,
      "narrative": {},
      "operation": Actor,
      "reportDate": "2007-12-03T10:15:30Z",
      "reporter": Actor,
      "status": "draft",
      "zone": Zone
    }
  }
}

updateLossNoticeDocumentMetadata

Response

Returns a LossNotice!

Arguments
Name Description
data - UpdateLossNoticeDocumentMetadataInput!

Example

Query
mutation updateLossNoticeDocumentMetadata($data: UpdateLossNoticeDocumentMetadataInput!) {
  updateLossNoticeDocumentMetadata(data: $data) {
    actions
    airframes {
      ...LossNoticeAirframeFragment
    }
    categories
    creationDate
    documents {
      ...FileMetadataFragment
    }
    flights {
      ...LossNoticeFlightFragment
    }
    id
    images {
      ...FileMetadataFragment
    }
    labels {
      ...LossNoticeLabelFragment
    }
    lastUpdateDate
    lossDate
    lossLocation {
      ...LocationFragment
    }
    narrative
    operation {
      ...ActorFragment
    }
    reportDate
    reporter {
      ...ActorFragment
    }
    status
    zone {
      ...ZoneFragment
    }
  }
}
Variables
{"data": UpdateLossNoticeDocumentMetadataInput}
Response
{
  "data": {
    "updateLossNoticeDocumentMetadata": {
      "actions": ["create"],
      "airframes": [LossNoticeAirframe],
      "categories": ["aircraft_hull"],
      "creationDate": "2007-12-03T10:15:30Z",
      "documents": [FileMetadata],
      "flights": [LossNoticeFlight],
      "id": "xyz789",
      "images": [FileMetadata],
      "labels": [LossNoticeLabel],
      "lastUpdateDate": "2007-12-03T10:15:30Z",
      "lossDate": "2007-12-03T10:15:30Z",
      "lossLocation": Location,
      "narrative": {},
      "operation": Actor,
      "reportDate": "2007-12-03T10:15:30Z",
      "reporter": Actor,
      "status": "draft",
      "zone": Zone
    }
  }
}

updateLossNoticeFlightDepartureAerodrome

Response

Returns a LossNotice!

Arguments
Name Description
data - UpdateLossNoticeFlightAerodromeInput!

Example

Query
mutation updateLossNoticeFlightDepartureAerodrome($data: UpdateLossNoticeFlightAerodromeInput!) {
  updateLossNoticeFlightDepartureAerodrome(data: $data) {
    actions
    airframes {
      ...LossNoticeAirframeFragment
    }
    categories
    creationDate
    documents {
      ...FileMetadataFragment
    }
    flights {
      ...LossNoticeFlightFragment
    }
    id
    images {
      ...FileMetadataFragment
    }
    labels {
      ...LossNoticeLabelFragment
    }
    lastUpdateDate
    lossDate
    lossLocation {
      ...LocationFragment
    }
    narrative
    operation {
      ...ActorFragment
    }
    reportDate
    reporter {
      ...ActorFragment
    }
    status
    zone {
      ...ZoneFragment
    }
  }
}
Variables
{"data": UpdateLossNoticeFlightAerodromeInput}
Response
{
  "data": {
    "updateLossNoticeFlightDepartureAerodrome": {
      "actions": ["create"],
      "airframes": [LossNoticeAirframe],
      "categories": ["aircraft_hull"],
      "creationDate": "2007-12-03T10:15:30Z",
      "documents": [FileMetadata],
      "flights": [LossNoticeFlight],
      "id": "abc123",
      "images": [FileMetadata],
      "labels": [LossNoticeLabel],
      "lastUpdateDate": "2007-12-03T10:15:30Z",
      "lossDate": "2007-12-03T10:15:30Z",
      "lossLocation": Location,
      "narrative": {},
      "operation": Actor,
      "reportDate": "2007-12-03T10:15:30Z",
      "reporter": Actor,
      "status": "draft",
      "zone": Zone
    }
  }
}

updateLossNoticeFlightDestinationAerodrome

Response

Returns a LossNotice!

Arguments
Name Description
data - UpdateLossNoticeFlightAerodromeInput!

Example

Query
mutation updateLossNoticeFlightDestinationAerodrome($data: UpdateLossNoticeFlightAerodromeInput!) {
  updateLossNoticeFlightDestinationAerodrome(data: $data) {
    actions
    airframes {
      ...LossNoticeAirframeFragment
    }
    categories
    creationDate
    documents {
      ...FileMetadataFragment
    }
    flights {
      ...LossNoticeFlightFragment
    }
    id
    images {
      ...FileMetadataFragment
    }
    labels {
      ...LossNoticeLabelFragment
    }
    lastUpdateDate
    lossDate
    lossLocation {
      ...LocationFragment
    }
    narrative
    operation {
      ...ActorFragment
    }
    reportDate
    reporter {
      ...ActorFragment
    }
    status
    zone {
      ...ZoneFragment
    }
  }
}
Variables
{"data": UpdateLossNoticeFlightAerodromeInput}
Response
{
  "data": {
    "updateLossNoticeFlightDestinationAerodrome": {
      "actions": ["create"],
      "airframes": [LossNoticeAirframe],
      "categories": ["aircraft_hull"],
      "creationDate": "2007-12-03T10:15:30Z",
      "documents": [FileMetadata],
      "flights": [LossNoticeFlight],
      "id": "xyz789",
      "images": [FileMetadata],
      "labels": [LossNoticeLabel],
      "lastUpdateDate": "2007-12-03T10:15:30Z",
      "lossDate": "2007-12-03T10:15:30Z",
      "lossLocation": Location,
      "narrative": {},
      "operation": Actor,
      "reportDate": "2007-12-03T10:15:30Z",
      "reporter": Actor,
      "status": "draft",
      "zone": Zone
    }
  }
}

updateLossNoticeFlightDiversionAerodrome

Response

Returns a LossNotice!

Arguments
Name Description
data - UpdateLossNoticeFlightAerodromeInput!

Example

Query
mutation updateLossNoticeFlightDiversionAerodrome($data: UpdateLossNoticeFlightAerodromeInput!) {
  updateLossNoticeFlightDiversionAerodrome(data: $data) {
    actions
    airframes {
      ...LossNoticeAirframeFragment
    }
    categories
    creationDate
    documents {
      ...FileMetadataFragment
    }
    flights {
      ...LossNoticeFlightFragment
    }
    id
    images {
      ...FileMetadataFragment
    }
    labels {
      ...LossNoticeLabelFragment
    }
    lastUpdateDate
    lossDate
    lossLocation {
      ...LocationFragment
    }
    narrative
    operation {
      ...ActorFragment
    }
    reportDate
    reporter {
      ...ActorFragment
    }
    status
    zone {
      ...ZoneFragment
    }
  }
}
Variables
{"data": UpdateLossNoticeFlightAerodromeInput}
Response
{
  "data": {
    "updateLossNoticeFlightDiversionAerodrome": {
      "actions": ["create"],
      "airframes": [LossNoticeAirframe],
      "categories": ["aircraft_hull"],
      "creationDate": "2007-12-03T10:15:30Z",
      "documents": [FileMetadata],
      "flights": [LossNoticeFlight],
      "id": "xyz789",
      "images": [FileMetadata],
      "labels": [LossNoticeLabel],
      "lastUpdateDate": "2007-12-03T10:15:30Z",
      "lossDate": "2007-12-03T10:15:30Z",
      "lossLocation": Location,
      "narrative": {},
      "operation": Actor,
      "reportDate": "2007-12-03T10:15:30Z",
      "reporter": Actor,
      "status": "draft",
      "zone": Zone
    }
  }
}

updateLossNoticeFlightFlightNumbers

Response

Returns a LossNotice!

Arguments
Name Description
data - UpdateLossNoticeFlightFlightNumbersInput!

Example

Query
mutation updateLossNoticeFlightFlightNumbers($data: UpdateLossNoticeFlightFlightNumbersInput!) {
  updateLossNoticeFlightFlightNumbers(data: $data) {
    actions
    airframes {
      ...LossNoticeAirframeFragment
    }
    categories
    creationDate
    documents {
      ...FileMetadataFragment
    }
    flights {
      ...LossNoticeFlightFragment
    }
    id
    images {
      ...FileMetadataFragment
    }
    labels {
      ...LossNoticeLabelFragment
    }
    lastUpdateDate
    lossDate
    lossLocation {
      ...LocationFragment
    }
    narrative
    operation {
      ...ActorFragment
    }
    reportDate
    reporter {
      ...ActorFragment
    }
    status
    zone {
      ...ZoneFragment
    }
  }
}
Variables
{"data": UpdateLossNoticeFlightFlightNumbersInput}
Response
{
  "data": {
    "updateLossNoticeFlightFlightNumbers": {
      "actions": ["create"],
      "airframes": [LossNoticeAirframe],
      "categories": ["aircraft_hull"],
      "creationDate": "2007-12-03T10:15:30Z",
      "documents": [FileMetadata],
      "flights": [LossNoticeFlight],
      "id": "abc123",
      "images": [FileMetadata],
      "labels": [LossNoticeLabel],
      "lastUpdateDate": "2007-12-03T10:15:30Z",
      "lossDate": "2007-12-03T10:15:30Z",
      "lossLocation": Location,
      "narrative": {},
      "operation": Actor,
      "reportDate": "2007-12-03T10:15:30Z",
      "reporter": Actor,
      "status": "draft",
      "zone": Zone
    }
  }
}

updateLossNoticeFlightOperator

Response

Returns a LossNotice!

Arguments
Name Description
data - UpdateLossNoticeFlightOperatorInput!

Example

Query
mutation updateLossNoticeFlightOperator($data: UpdateLossNoticeFlightOperatorInput!) {
  updateLossNoticeFlightOperator(data: $data) {
    actions
    airframes {
      ...LossNoticeAirframeFragment
    }
    categories
    creationDate
    documents {
      ...FileMetadataFragment
    }
    flights {
      ...LossNoticeFlightFragment
    }
    id
    images {
      ...FileMetadataFragment
    }
    labels {
      ...LossNoticeLabelFragment
    }
    lastUpdateDate
    lossDate
    lossLocation {
      ...LocationFragment
    }
    narrative
    operation {
      ...ActorFragment
    }
    reportDate
    reporter {
      ...ActorFragment
    }
    status
    zone {
      ...ZoneFragment
    }
  }
}
Variables
{"data": UpdateLossNoticeFlightOperatorInput}
Response
{
  "data": {
    "updateLossNoticeFlightOperator": {
      "actions": ["create"],
      "airframes": [LossNoticeAirframe],
      "categories": ["aircraft_hull"],
      "creationDate": "2007-12-03T10:15:30Z",
      "documents": [FileMetadata],
      "flights": [LossNoticeFlight],
      "id": "xyz789",
      "images": [FileMetadata],
      "labels": [LossNoticeLabel],
      "lastUpdateDate": "2007-12-03T10:15:30Z",
      "lossDate": "2007-12-03T10:15:30Z",
      "lossLocation": Location,
      "narrative": {},
      "operation": Actor,
      "reportDate": "2007-12-03T10:15:30Z",
      "reporter": Actor,
      "status": "draft",
      "zone": Zone
    }
  }
}

updateLossNoticeImageMetadata

Response

Returns a LossNotice!

Arguments
Name Description
data - UpdateLossNoticeImageMetadataInput!

Example

Query
mutation updateLossNoticeImageMetadata($data: UpdateLossNoticeImageMetadataInput!) {
  updateLossNoticeImageMetadata(data: $data) {
    actions
    airframes {
      ...LossNoticeAirframeFragment
    }
    categories
    creationDate
    documents {
      ...FileMetadataFragment
    }
    flights {
      ...LossNoticeFlightFragment
    }
    id
    images {
      ...FileMetadataFragment
    }
    labels {
      ...LossNoticeLabelFragment
    }
    lastUpdateDate
    lossDate
    lossLocation {
      ...LocationFragment
    }
    narrative
    operation {
      ...ActorFragment
    }
    reportDate
    reporter {
      ...ActorFragment
    }
    status
    zone {
      ...ZoneFragment
    }
  }
}
Variables
{"data": UpdateLossNoticeImageMetadataInput}
Response
{
  "data": {
    "updateLossNoticeImageMetadata": {
      "actions": ["create"],
      "airframes": [LossNoticeAirframe],
      "categories": ["aircraft_hull"],
      "creationDate": "2007-12-03T10:15:30Z",
      "documents": [FileMetadata],
      "flights": [LossNoticeFlight],
      "id": "abc123",
      "images": [FileMetadata],
      "labels": [LossNoticeLabel],
      "lastUpdateDate": "2007-12-03T10:15:30Z",
      "lossDate": "2007-12-03T10:15:30Z",
      "lossLocation": Location,
      "narrative": {},
      "operation": Actor,
      "reportDate": "2007-12-03T10:15:30Z",
      "reporter": Actor,
      "status": "draft",
      "zone": Zone
    }
  }
}

updateLossNoticeLossCategories

Response

Returns a LossNotice!

Arguments
Name Description
data - UpdateLossCategoriesInput!

Example

Query
mutation updateLossNoticeLossCategories($data: UpdateLossCategoriesInput!) {
  updateLossNoticeLossCategories(data: $data) {
    actions
    airframes {
      ...LossNoticeAirframeFragment
    }
    categories
    creationDate
    documents {
      ...FileMetadataFragment
    }
    flights {
      ...LossNoticeFlightFragment
    }
    id
    images {
      ...FileMetadataFragment
    }
    labels {
      ...LossNoticeLabelFragment
    }
    lastUpdateDate
    lossDate
    lossLocation {
      ...LocationFragment
    }
    narrative
    operation {
      ...ActorFragment
    }
    reportDate
    reporter {
      ...ActorFragment
    }
    status
    zone {
      ...ZoneFragment
    }
  }
}
Variables
{"data": UpdateLossCategoriesInput}
Response
{
  "data": {
    "updateLossNoticeLossCategories": {
      "actions": ["create"],
      "airframes": [LossNoticeAirframe],
      "categories": ["aircraft_hull"],
      "creationDate": "2007-12-03T10:15:30Z",
      "documents": [FileMetadata],
      "flights": [LossNoticeFlight],
      "id": "xyz789",
      "images": [FileMetadata],
      "labels": [LossNoticeLabel],
      "lastUpdateDate": "2007-12-03T10:15:30Z",
      "lossDate": "2007-12-03T10:15:30Z",
      "lossLocation": Location,
      "narrative": {},
      "operation": Actor,
      "reportDate": "2007-12-03T10:15:30Z",
      "reporter": Actor,
      "status": "draft",
      "zone": Zone
    }
  }
}

updateLossNoticeLossDate

Response

Returns a LossNotice!

Arguments
Name Description
data - UpdateLossNoticeLossDateInput!

Example

Query
mutation updateLossNoticeLossDate($data: UpdateLossNoticeLossDateInput!) {
  updateLossNoticeLossDate(data: $data) {
    actions
    airframes {
      ...LossNoticeAirframeFragment
    }
    categories
    creationDate
    documents {
      ...FileMetadataFragment
    }
    flights {
      ...LossNoticeFlightFragment
    }
    id
    images {
      ...FileMetadataFragment
    }
    labels {
      ...LossNoticeLabelFragment
    }
    lastUpdateDate
    lossDate
    lossLocation {
      ...LocationFragment
    }
    narrative
    operation {
      ...ActorFragment
    }
    reportDate
    reporter {
      ...ActorFragment
    }
    status
    zone {
      ...ZoneFragment
    }
  }
}
Variables
{"data": UpdateLossNoticeLossDateInput}
Response
{
  "data": {
    "updateLossNoticeLossDate": {
      "actions": ["create"],
      "airframes": [LossNoticeAirframe],
      "categories": ["aircraft_hull"],
      "creationDate": "2007-12-03T10:15:30Z",
      "documents": [FileMetadata],
      "flights": [LossNoticeFlight],
      "id": "abc123",
      "images": [FileMetadata],
      "labels": [LossNoticeLabel],
      "lastUpdateDate": "2007-12-03T10:15:30Z",
      "lossDate": "2007-12-03T10:15:30Z",
      "lossLocation": Location,
      "narrative": {},
      "operation": Actor,
      "reportDate": "2007-12-03T10:15:30Z",
      "reporter": Actor,
      "status": "draft",
      "zone": Zone
    }
  }
}

updateLossNoticeLossLocation

Response

Returns a LossNotice!

Arguments
Name Description
data - UpdateLocationInput!

Example

Query
mutation updateLossNoticeLossLocation($data: UpdateLocationInput!) {
  updateLossNoticeLossLocation(data: $data) {
    actions
    airframes {
      ...LossNoticeAirframeFragment
    }
    categories
    creationDate
    documents {
      ...FileMetadataFragment
    }
    flights {
      ...LossNoticeFlightFragment
    }
    id
    images {
      ...FileMetadataFragment
    }
    labels {
      ...LossNoticeLabelFragment
    }
    lastUpdateDate
    lossDate
    lossLocation {
      ...LocationFragment
    }
    narrative
    operation {
      ...ActorFragment
    }
    reportDate
    reporter {
      ...ActorFragment
    }
    status
    zone {
      ...ZoneFragment
    }
  }
}
Variables
{"data": UpdateLocationInput}
Response
{
  "data": {
    "updateLossNoticeLossLocation": {
      "actions": ["create"],
      "airframes": [LossNoticeAirframe],
      "categories": ["aircraft_hull"],
      "creationDate": "2007-12-03T10:15:30Z",
      "documents": [FileMetadata],
      "flights": [LossNoticeFlight],
      "id": "abc123",
      "images": [FileMetadata],
      "labels": [LossNoticeLabel],
      "lastUpdateDate": "2007-12-03T10:15:30Z",
      "lossDate": "2007-12-03T10:15:30Z",
      "lossLocation": Location,
      "narrative": {},
      "operation": Actor,
      "reportDate": "2007-12-03T10:15:30Z",
      "reporter": Actor,
      "status": "draft",
      "zone": Zone
    }
  }
}

updateLossNoticeNarrative

Response

Returns a LossNotice!

Arguments
Name Description
data - UpdateLossNoticeNarrativeInput!

Example

Query
mutation updateLossNoticeNarrative($data: UpdateLossNoticeNarrativeInput!) {
  updateLossNoticeNarrative(data: $data) {
    actions
    airframes {
      ...LossNoticeAirframeFragment
    }
    categories
    creationDate
    documents {
      ...FileMetadataFragment
    }
    flights {
      ...LossNoticeFlightFragment
    }
    id
    images {
      ...FileMetadataFragment
    }
    labels {
      ...LossNoticeLabelFragment
    }
    lastUpdateDate
    lossDate
    lossLocation {
      ...LocationFragment
    }
    narrative
    operation {
      ...ActorFragment
    }
    reportDate
    reporter {
      ...ActorFragment
    }
    status
    zone {
      ...ZoneFragment
    }
  }
}
Variables
{"data": UpdateLossNoticeNarrativeInput}
Response
{
  "data": {
    "updateLossNoticeNarrative": {
      "actions": ["create"],
      "airframes": [LossNoticeAirframe],
      "categories": ["aircraft_hull"],
      "creationDate": "2007-12-03T10:15:30Z",
      "documents": [FileMetadata],
      "flights": [LossNoticeFlight],
      "id": "abc123",
      "images": [FileMetadata],
      "labels": [LossNoticeLabel],
      "lastUpdateDate": "2007-12-03T10:15:30Z",
      "lossDate": "2007-12-03T10:15:30Z",
      "lossLocation": Location,
      "narrative": {},
      "operation": Actor,
      "reportDate": "2007-12-03T10:15:30Z",
      "reporter": Actor,
      "status": "draft",
      "zone": Zone
    }
  }
}

updateLossNoticeOperation

Response

Returns a LossNotice!

Arguments
Name Description
data - UpdateOperationInput!

Example

Query
mutation updateLossNoticeOperation($data: UpdateOperationInput!) {
  updateLossNoticeOperation(data: $data) {
    actions
    airframes {
      ...LossNoticeAirframeFragment
    }
    categories
    creationDate
    documents {
      ...FileMetadataFragment
    }
    flights {
      ...LossNoticeFlightFragment
    }
    id
    images {
      ...FileMetadataFragment
    }
    labels {
      ...LossNoticeLabelFragment
    }
    lastUpdateDate
    lossDate
    lossLocation {
      ...LocationFragment
    }
    narrative
    operation {
      ...ActorFragment
    }
    reportDate
    reporter {
      ...ActorFragment
    }
    status
    zone {
      ...ZoneFragment
    }
  }
}
Variables
{"data": UpdateOperationInput}
Response
{
  "data": {
    "updateLossNoticeOperation": {
      "actions": ["create"],
      "airframes": [LossNoticeAirframe],
      "categories": ["aircraft_hull"],
      "creationDate": "2007-12-03T10:15:30Z",
      "documents": [FileMetadata],
      "flights": [LossNoticeFlight],
      "id": "xyz789",
      "images": [FileMetadata],
      "labels": [LossNoticeLabel],
      "lastUpdateDate": "2007-12-03T10:15:30Z",
      "lossDate": "2007-12-03T10:15:30Z",
      "lossLocation": Location,
      "narrative": {},
      "operation": Actor,
      "reportDate": "2007-12-03T10:15:30Z",
      "reporter": Actor,
      "status": "draft",
      "zone": Zone
    }
  }
}

updateLossNoticeReportDate

Response

Returns a LossNotice!

Arguments
Name Description
data - UpdateLossNoticeReportDateInput!

Example

Query
mutation updateLossNoticeReportDate($data: UpdateLossNoticeReportDateInput!) {
  updateLossNoticeReportDate(data: $data) {
    actions
    airframes {
      ...LossNoticeAirframeFragment
    }
    categories
    creationDate
    documents {
      ...FileMetadataFragment
    }
    flights {
      ...LossNoticeFlightFragment
    }
    id
    images {
      ...FileMetadataFragment
    }
    labels {
      ...LossNoticeLabelFragment
    }
    lastUpdateDate
    lossDate
    lossLocation {
      ...LocationFragment
    }
    narrative
    operation {
      ...ActorFragment
    }
    reportDate
    reporter {
      ...ActorFragment
    }
    status
    zone {
      ...ZoneFragment
    }
  }
}
Variables
{"data": UpdateLossNoticeReportDateInput}
Response
{
  "data": {
    "updateLossNoticeReportDate": {
      "actions": ["create"],
      "airframes": [LossNoticeAirframe],
      "categories": ["aircraft_hull"],
      "creationDate": "2007-12-03T10:15:30Z",
      "documents": [FileMetadata],
      "flights": [LossNoticeFlight],
      "id": "abc123",
      "images": [FileMetadata],
      "labels": [LossNoticeLabel],
      "lastUpdateDate": "2007-12-03T10:15:30Z",
      "lossDate": "2007-12-03T10:15:30Z",
      "lossLocation": Location,
      "narrative": {},
      "operation": Actor,
      "reportDate": "2007-12-03T10:15:30Z",
      "reporter": Actor,
      "status": "draft",
      "zone": Zone
    }
  }
}

updateLossNoticeReporter

Response

Returns a LossNotice!

Arguments
Name Description
data - UpdateReporterInput!

Example

Query
mutation updateLossNoticeReporter($data: UpdateReporterInput!) {
  updateLossNoticeReporter(data: $data) {
    actions
    airframes {
      ...LossNoticeAirframeFragment
    }
    categories
    creationDate
    documents {
      ...FileMetadataFragment
    }
    flights {
      ...LossNoticeFlightFragment
    }
    id
    images {
      ...FileMetadataFragment
    }
    labels {
      ...LossNoticeLabelFragment
    }
    lastUpdateDate
    lossDate
    lossLocation {
      ...LocationFragment
    }
    narrative
    operation {
      ...ActorFragment
    }
    reportDate
    reporter {
      ...ActorFragment
    }
    status
    zone {
      ...ZoneFragment
    }
  }
}
Variables
{"data": UpdateReporterInput}
Response
{
  "data": {
    "updateLossNoticeReporter": {
      "actions": ["create"],
      "airframes": [LossNoticeAirframe],
      "categories": ["aircraft_hull"],
      "creationDate": "2007-12-03T10:15:30Z",
      "documents": [FileMetadata],
      "flights": [LossNoticeFlight],
      "id": "abc123",
      "images": [FileMetadata],
      "labels": [LossNoticeLabel],
      "lastUpdateDate": "2007-12-03T10:15:30Z",
      "lossDate": "2007-12-03T10:15:30Z",
      "lossLocation": Location,
      "narrative": {},
      "operation": Actor,
      "reportDate": "2007-12-03T10:15:30Z",
      "reporter": Actor,
      "status": "draft",
      "zone": Zone
    }
  }
}

updatePolicyDetails

Description

Update Policy details

Response

Returns a Policy!

Arguments
Name Description
data - UpdatePolicyDetailsInput!

Example

Query
mutation updatePolicyDetails($data: UpdatePolicyDetailsInput!) {
  updatePolicyDetails(data: $data) {
    cls
    creationDate
    endDate
    id
    labels {
      ...PolicyLabelFragment
    }
    lastUpdateDate
    markets {
      ...PolicyMarketFragment
    }
    namedInsured {
      ...PolicyLegalEntityFragment
    }
    policyNumber
    policyholder {
      ...PolicyLegalEntityFragment
    }
    primaryBroker {
      ...PolicyLegalEntityFragment
    }
    secondaryBroker {
      ...PolicyLegalEntityFragment
    }
    startDate
    type
    zone {
      ...ZoneFragment
    }
  }
}
Variables
{"data": UpdatePolicyDetailsInput}
Response
{
  "data": {
    "updatePolicyDetails": {
      "cls": "aviation",
      "creationDate": "2007-12-03T10:15:30Z",
      "endDate": "2007-12-03T10:15:30Z",
      "id": "xyz789",
      "labels": [PolicyLabel],
      "lastUpdateDate": "2007-12-03T10:15:30Z",
      "markets": [PolicyMarket],
      "namedInsured": [PolicyLegalEntity],
      "policyNumber": "xyz789",
      "policyholder": PolicyLegalEntity,
      "primaryBroker": PolicyLegalEntity,
      "secondaryBroker": PolicyLegalEntity,
      "startDate": "2007-12-03T10:15:30Z",
      "type": ["aviation_contingent_hull_all_risk"],
      "zone": Zone
    }
  }
}

updatePolicyMarket

Description

Update a Policy Market

Response

Returns a Policy!

Arguments
Name Description
data - UpdatePolicyMarketInput!

Example

Query
mutation updatePolicyMarket($data: UpdatePolicyMarketInput!) {
  updatePolicyMarket(data: $data) {
    cls
    creationDate
    endDate
    id
    labels {
      ...PolicyLabelFragment
    }
    lastUpdateDate
    markets {
      ...PolicyMarketFragment
    }
    namedInsured {
      ...PolicyLegalEntityFragment
    }
    policyNumber
    policyholder {
      ...PolicyLegalEntityFragment
    }
    primaryBroker {
      ...PolicyLegalEntityFragment
    }
    secondaryBroker {
      ...PolicyLegalEntityFragment
    }
    startDate
    type
    zone {
      ...ZoneFragment
    }
  }
}
Variables
{"data": UpdatePolicyMarketInput}
Response
{
  "data": {
    "updatePolicyMarket": {
      "cls": "aviation",
      "creationDate": "2007-12-03T10:15:30Z",
      "endDate": "2007-12-03T10:15:30Z",
      "id": "xyz789",
      "labels": [PolicyLabel],
      "lastUpdateDate": "2007-12-03T10:15:30Z",
      "markets": [PolicyMarket],
      "namedInsured": [PolicyLegalEntity],
      "policyNumber": "abc123",
      "policyholder": PolicyLegalEntity,
      "primaryBroker": PolicyLegalEntity,
      "secondaryBroker": PolicyLegalEntity,
      "startDate": "2007-12-03T10:15:30Z",
      "type": ["aviation_contingent_hull_all_risk"],
      "zone": Zone
    }
  }
}

updatePolicyMarketCompanyLine

Description

Remove a Company Line from a Policy Market

Response

Returns a Policy!

Arguments
Name Description
data - UpdatePolicyMarketCompanyLineInput!

Example

Query
mutation updatePolicyMarketCompanyLine($data: UpdatePolicyMarketCompanyLineInput!) {
  updatePolicyMarketCompanyLine(data: $data) {
    cls
    creationDate
    endDate
    id
    labels {
      ...PolicyLabelFragment
    }
    lastUpdateDate
    markets {
      ...PolicyMarketFragment
    }
    namedInsured {
      ...PolicyLegalEntityFragment
    }
    policyNumber
    policyholder {
      ...PolicyLegalEntityFragment
    }
    primaryBroker {
      ...PolicyLegalEntityFragment
    }
    secondaryBroker {
      ...PolicyLegalEntityFragment
    }
    startDate
    type
    zone {
      ...ZoneFragment
    }
  }
}
Variables
{"data": UpdatePolicyMarketCompanyLineInput}
Response
{
  "data": {
    "updatePolicyMarketCompanyLine": {
      "cls": "aviation",
      "creationDate": "2007-12-03T10:15:30Z",
      "endDate": "2007-12-03T10:15:30Z",
      "id": "xyz789",
      "labels": [PolicyLabel],
      "lastUpdateDate": "2007-12-03T10:15:30Z",
      "markets": [PolicyMarket],
      "namedInsured": [PolicyLegalEntity],
      "policyNumber": "abc123",
      "policyholder": PolicyLegalEntity,
      "primaryBroker": PolicyLegalEntity,
      "secondaryBroker": PolicyLegalEntity,
      "startDate": "2007-12-03T10:15:30Z",
      "type": ["aviation_contingent_hull_all_risk"],
      "zone": Zone
    }
  }
}

updatePolicyMarketWarrantyPolicy

Description

Update a Policy Market Warrant Policy / Risk Framework

Response

Returns a Policy!

Arguments
Name Description
data - UpdatePolicyMarketWarrantyPolicyInput!

Example

Query
mutation updatePolicyMarketWarrantyPolicy($data: UpdatePolicyMarketWarrantyPolicyInput!) {
  updatePolicyMarketWarrantyPolicy(data: $data) {
    cls
    creationDate
    endDate
    id
    labels {
      ...PolicyLabelFragment
    }
    lastUpdateDate
    markets {
      ...PolicyMarketFragment
    }
    namedInsured {
      ...PolicyLegalEntityFragment
    }
    policyNumber
    policyholder {
      ...PolicyLegalEntityFragment
    }
    primaryBroker {
      ...PolicyLegalEntityFragment
    }
    secondaryBroker {
      ...PolicyLegalEntityFragment
    }
    startDate
    type
    zone {
      ...ZoneFragment
    }
  }
}
Variables
{"data": UpdatePolicyMarketWarrantyPolicyInput}
Response
{
  "data": {
    "updatePolicyMarketWarrantyPolicy": {
      "cls": "aviation",
      "creationDate": "2007-12-03T10:15:30Z",
      "endDate": "2007-12-03T10:15:30Z",
      "id": "xyz789",
      "labels": [PolicyLabel],
      "lastUpdateDate": "2007-12-03T10:15:30Z",
      "markets": [PolicyMarket],
      "namedInsured": [PolicyLegalEntity],
      "policyNumber": "abc123",
      "policyholder": PolicyLegalEntity,
      "primaryBroker": PolicyLegalEntity,
      "secondaryBroker": PolicyLegalEntity,
      "startDate": "2007-12-03T10:15:30Z",
      "type": ["aviation_contingent_hull_all_risk"],
      "zone": Zone
    }
  }
}

updatePolicyType

Description

Update the Policy type

Response

Returns a Policy!

Arguments
Name Description
data - UpdatePolicyTypeInput!

Example

Query
mutation updatePolicyType($data: UpdatePolicyTypeInput!) {
  updatePolicyType(data: $data) {
    cls
    creationDate
    endDate
    id
    labels {
      ...PolicyLabelFragment
    }
    lastUpdateDate
    markets {
      ...PolicyMarketFragment
    }
    namedInsured {
      ...PolicyLegalEntityFragment
    }
    policyNumber
    policyholder {
      ...PolicyLegalEntityFragment
    }
    primaryBroker {
      ...PolicyLegalEntityFragment
    }
    secondaryBroker {
      ...PolicyLegalEntityFragment
    }
    startDate
    type
    zone {
      ...ZoneFragment
    }
  }
}
Variables
{"data": UpdatePolicyTypeInput}
Response
{
  "data": {
    "updatePolicyType": {
      "cls": "aviation",
      "creationDate": "2007-12-03T10:15:30Z",
      "endDate": "2007-12-03T10:15:30Z",
      "id": "xyz789",
      "labels": [PolicyLabel],
      "lastUpdateDate": "2007-12-03T10:15:30Z",
      "markets": [PolicyMarket],
      "namedInsured": [PolicyLegalEntity],
      "policyNumber": "abc123",
      "policyholder": PolicyLegalEntity,
      "primaryBroker": PolicyLegalEntity,
      "secondaryBroker": PolicyLegalEntity,
      "startDate": "2007-12-03T10:15:30Z",
      "type": ["aviation_contingent_hull_all_risk"],
      "zone": Zone
    }
  }
}

updateRole

Description

Update a Role

Response

Returns a Role!

Arguments
Name Description
data - UpdateRoleInput!

Example

Query
mutation updateRole($data: UpdateRoleInput!) {
  updateRole(data: $data) {
    description
    enabled
    group {
      ...GroupFragment
    }
    id
    name
    permissions {
      ...PermissionFragment
    }
    scope
    zone {
      ...ZoneFragment
    }
  }
}
Variables
{"data": UpdateRoleInput}
Response
{
  "data": {
    "updateRole": {
      "description": "xyz789",
      "enabled": true,
      "group": Group,
      "id": "xyz789",
      "name": "xyz789",
      "permissions": [Permission],
      "scope": "global",
      "zone": Zone
    }
  }
}

updateRolePermission

Response

Returns a Permission!

Arguments
Name Description
data - UpdateRolePermissionInput!

Example

Query
mutation updateRolePermission($data: UpdateRolePermissionInput!) {
  updateRolePermission(data: $data) {
    actions
    conditions {
      ...ConditionFragment
    }
    enabled
    id
    resource
  }
}
Variables
{"data": UpdateRolePermissionInput}
Response
{
  "data": {
    "updateRolePermission": {
      "actions": ["create"],
      "conditions": Condition,
      "enabled": false,
      "id": "abc123",
      "resource": "adjustment"
    }
  }
}

updateRolePermissionCondition

Response

Returns a Condition!

Arguments
Name Description
data - UpdateRolePermissionConditionInput!

Example

Query
mutation updateRolePermissionCondition($data: UpdateRolePermissionConditionInput!) {
  updateRolePermissionCondition(data: $data) {
    from
    id
    roles
    to
  }
}
Variables
{"data": UpdateRolePermissionConditionInput}
Response
{
  "data": {
    "updateRolePermissionCondition": {
      "from": "2007-12-03T10:15:30Z",
      "id": "xyz789",
      "roles": ["collaborator"],
      "to": "2007-12-03T10:15:30Z"
    }
  }
}

updateStakeholder

Description

Update a Stakeholder

Response

Returns a Stakeholder!

Arguments
Name Description
data - UpdateStakeholderInput!

Example

Query
mutation updateStakeholder($data: UpdateStakeholderInput!) {
  updateStakeholder(data: $data) {
    company {
      ...CompanyFragment
    }
    id
    roles
    zone {
      ...ZoneFragment
    }
  }
}
Variables
{"data": UpdateStakeholderInput}
Response
{
  "data": {
    "updateStakeholder": {
      "company": Company,
      "id": "xyz789",
      "roles": ["broker"],
      "zone": Zone
    }
  }
}

updateZone

Response

Returns a Zone!

Arguments
Name Description
data - UpdateZoneInput!

Example

Query
mutation updateZone($data: UpdateZoneInput!) {
  updateZone(data: $data) {
    description
    id
    name
    parentId
    paths {
      ...ZonePathsFragment
    }
    resources {
      ...ResourceActionsFragment
    }
  }
}
Variables
{"data": UpdateZoneInput}
Response
{
  "data": {
    "updateZone": {
      "description": "abc123",
      "id": "xyz789",
      "name": "abc123",
      "parentId": "xyz789",
      "paths": ZonePaths,
      "resources": [ResourceActions]
    }
  }
}

zeroAdjustmentUnallocatedPolicyLines

Description

Zero all unallocated Policy Lines assigned to the Adjustment

Response

Returns an Adjustment!

Arguments
Name Description
data - ZeroAdjustmentUnallocatedPolicyLinesInput!

Example

Query
mutation zeroAdjustmentUnallocatedPolicyLines($data: ZeroAdjustmentUnallocatedPolicyLinesInput!) {
  zeroAdjustmentUnallocatedPolicyLines(data: $data) {
    actions {
      ...AdjustmentActionFragment
    }
    airframes {
      ...AdjustmentAirframeFragment
    }
    allocations {
      ...AdjustmentAllocationFragment
    }
    categories
    collaborators {
      ...ActorFragment
    }
    costsExpenses {
      ...AdjustmentCostsExpensesFragment
    }
    creationDate
    documents {
      ...FileMetadataFragment
    }
    executiveSummary
    expert {
      ...ActorFragment
    }
    fees {
      ...AdjustmentFeesFragment
    }
    flights {
      ...AdjustmentFlightFragment
    }
    id
    images {
      ...FileMetadataFragment
    }
    indemnity {
      ...AdjustmentIndemnityFragment
    }
    labels {
      ...AdjustmentLabelFragment
    }
    lastUpdateDate
    legalEntities {
      ...AdjustmentLegalEntitiesFragment
    }
    lossDate
    lossLocation {
      ...LocationFragment
    }
    lossNotice {
      ...LossNoticeFragment
    }
    marketReferences {
      ...MarketReferenceFragment
    }
    operation {
      ...ActorFragment
    }
    owner {
      ...ActorFragment
    }
    recommendations
    reportDate
    reporter {
      ...ActorFragment
    }
    reportingCurrency
    reports {
      ...AdjustmentReportFragment
    }
    stakeholderReferences {
      ...StakeholderReferenceFragment
    }
    status
    statusHistory {
      ...AdjustmentStatusChangeFragment
    }
    transitions {
      ...AdjustmentTransitionFragment
    }
    unpublishedChanges
    zone {
      ...ZoneFragment
    }
  }
}
Variables
{"data": ZeroAdjustmentUnallocatedPolicyLinesInput}
Response
{
  "data": {
    "zeroAdjustmentUnallocatedPolicyLines": {
      "actions": [AdjustmentAction],
      "airframes": [AdjustmentAirframe],
      "allocations": [AdjustmentAllocation],
      "categories": ["aircraft_hull"],
      "collaborators": [Actor],
      "costsExpenses": AdjustmentCostsExpenses,
      "creationDate": "2007-12-03T10:15:30Z",
      "documents": [FileMetadata],
      "executiveSummary": {},
      "expert": Actor,
      "fees": AdjustmentFees,
      "flights": [AdjustmentFlight],
      "id": "xyz789",
      "images": [FileMetadata],
      "indemnity": AdjustmentIndemnity,
      "labels": [AdjustmentLabel],
      "lastUpdateDate": "2007-12-03T10:15:30Z",
      "legalEntities": AdjustmentLegalEntities,
      "lossDate": "2007-12-03T10:15:30Z",
      "lossLocation": Location,
      "lossNotice": LossNotice,
      "marketReferences": [MarketReference],
      "operation": Actor,
      "owner": Actor,
      "recommendations": {},
      "reportDate": "2007-12-03T10:15:30Z",
      "reporter": Actor,
      "reportingCurrency": "abc123",
      "reports": [AdjustmentReport],
      "stakeholderReferences": [StakeholderReference],
      "status": "abeyance",
      "statusHistory": [AdjustmentStatusChange],
      "transitions": [AdjustmentTransition],
      "unpublishedChanges": false,
      "zone": Zone
    }
  }
}

zeroAdjustmentUnallocatedRetainedLines

Description

Zero all unallocated retained Allocation Lines of an Adjustment

Response

Returns an Adjustment!

Arguments
Name Description
data - ZeroAdjustmentUnallocatedRetainedLinesInput!

Example

Query
mutation zeroAdjustmentUnallocatedRetainedLines($data: ZeroAdjustmentUnallocatedRetainedLinesInput!) {
  zeroAdjustmentUnallocatedRetainedLines(data: $data) {
    actions {
      ...AdjustmentActionFragment
    }
    airframes {
      ...AdjustmentAirframeFragment
    }
    allocations {
      ...AdjustmentAllocationFragment
    }
    categories
    collaborators {
      ...ActorFragment
    }
    costsExpenses {
      ...AdjustmentCostsExpensesFragment
    }
    creationDate
    documents {
      ...FileMetadataFragment
    }
    executiveSummary
    expert {
      ...ActorFragment
    }
    fees {
      ...AdjustmentFeesFragment
    }
    flights {
      ...AdjustmentFlightFragment
    }
    id
    images {
      ...FileMetadataFragment
    }
    indemnity {
      ...AdjustmentIndemnityFragment
    }
    labels {
      ...AdjustmentLabelFragment
    }
    lastUpdateDate
    legalEntities {
      ...AdjustmentLegalEntitiesFragment
    }
    lossDate
    lossLocation {
      ...LocationFragment
    }
    lossNotice {
      ...LossNoticeFragment
    }
    marketReferences {
      ...MarketReferenceFragment
    }
    operation {
      ...ActorFragment
    }
    owner {
      ...ActorFragment
    }
    recommendations
    reportDate
    reporter {
      ...ActorFragment
    }
    reportingCurrency
    reports {
      ...AdjustmentReportFragment
    }
    stakeholderReferences {
      ...StakeholderReferenceFragment
    }
    status
    statusHistory {
      ...AdjustmentStatusChangeFragment
    }
    transitions {
      ...AdjustmentTransitionFragment
    }
    unpublishedChanges
    zone {
      ...ZoneFragment
    }
  }
}
Variables
{"data": ZeroAdjustmentUnallocatedRetainedLinesInput}
Response
{
  "data": {
    "zeroAdjustmentUnallocatedRetainedLines": {
      "actions": [AdjustmentAction],
      "airframes": [AdjustmentAirframe],
      "allocations": [AdjustmentAllocation],
      "categories": ["aircraft_hull"],
      "collaborators": [Actor],
      "costsExpenses": AdjustmentCostsExpenses,
      "creationDate": "2007-12-03T10:15:30Z",
      "documents": [FileMetadata],
      "executiveSummary": {},
      "expert": Actor,
      "fees": AdjustmentFees,
      "flights": [AdjustmentFlight],
      "id": "abc123",
      "images": [FileMetadata],
      "indemnity": AdjustmentIndemnity,
      "labels": [AdjustmentLabel],
      "lastUpdateDate": "2007-12-03T10:15:30Z",
      "legalEntities": AdjustmentLegalEntities,
      "lossDate": "2007-12-03T10:15:30Z",
      "lossLocation": Location,
      "lossNotice": LossNotice,
      "marketReferences": [MarketReference],
      "operation": Actor,
      "owner": Actor,
      "recommendations": {},
      "reportDate": "2007-12-03T10:15:30Z",
      "reporter": Actor,
      "reportingCurrency": "abc123",
      "reports": [AdjustmentReport],
      "stakeholderReferences": [StakeholderReference],
      "status": "abeyance",
      "statusHistory": [AdjustmentStatusChange],
      "transitions": [AdjustmentTransition],
      "unpublishedChanges": true,
      "zone": Zone
    }
  }
}

Types

Actor

Fields
Field Name Description
id - String!
stakeholder - Stakeholder
type - ActorRole!
user - User
Example
{
  "id": "xyz789",
  "stakeholder": Stakeholder,
  "type": "collaborator",
  "user": User
}

ActorRole

Description

The role/type of actor

Values
Enum Value Description

collaborator

creator

expert

operation

owner

reporter

Example
"collaborator"

AddAdjustmentAirframeCrewMemberInput

Fields
Input Field Description
airframeId - String! The id of the Airframe
dateOfBirth - DateTime! The Crew Member's date of birth
familyName - String! The Crew Member's family name/surname. The length should be between 2 and 64 characters
firstName - String! The Crew Member's first/given name. The length should be between 2 and 64 characters
id - String! The id of the Adjustment
nationalities - [String!]! The Crew Member's nationalities. Default = []
role - AircraftCrewRole! The role of the Crew Member during the flight
sex - IndividualSex! The sex of the Crew Member
Example
{
  "airframeId": "xyz789",
  "dateOfBirth": "2007-12-03T10:15:30Z",
  "familyName": "abc123",
  "firstName": "xyz789",
  "id": "abc123",
  "nationalities": ["abc123"],
  "role": "cabincrew",
  "sex": "female"
}

AddAdjustmentAirframeEngineDamageInput

Fields
Input Field Description
components - [AirframeEngineComponent!]! The Engine component damaged
engineId - String! The id of the Engine
extent - DamageExtent! The extent damage to the Engine
id - String! The id of the Adjustment
narrative - JSONObject A narrative describing the Damage. This must be a TipTap JSON object. Default = null
Example
{
  "components": ["carburettor"],
  "engineId": "abc123",
  "extent": "destroyed",
  "id": "abc123",
  "narrative": {}
}

AddAdjustmentAirframeEngineInput

Fields
Input Field Description
airframeId - String! The id of the Airframe
id - String! The id of the Adjustment
lease - LeaseStatus! The lease status of the Engine
manufacturerId - Int! The id of the Manufacturer
modelId - Int! The id of the Model
position - AirframeEnginePosition! The position of the Engine
repairability - Repairability! The repairability of the Engine
serialNumber - String (Optional) The serial number of the Engine. The length should be between 1 and 32 characters. Default = null
workload - AddAdjustmentAirframeEngineWorkloadInput The Workload of the Engine. Default = null
yearOfManufacture - Int (Optional) The year the Engine was manufactured. The value should be between 1980 and 2025. Default = null
Example
{
  "airframeId": "xyz789",
  "id": "xyz789",
  "lease": "leased",
  "manufacturerId": 987,
  "modelId": 987,
  "position": "apu",
  "repairability": "not_applicable",
  "serialNumber": "abc123",
  "workload": AddAdjustmentAirframeEngineWorkloadInput,
  "yearOfManufacture": 987
}

AddAdjustmentAirframeEngineMaintenanceCheckInput

Fields
Input Field Description
companyId - String! The id of the Company/Organisation who performed the Maintenance/Check
cyclesAtCheck - Int (Optional) The number of cycles at the time of the Maintenance/Check. The value should be between 0 and 100000. Default = null
endDate - DateTime! The end date of the Maintenance/Check. This date must be after the start date and before the loss date
engineId - String! The id of the Engine
hoursAtCheck - Int (Optional) The number of hours at the time of the Maintenance/Check. The value should be between 0 and 200000. Default = null
id - String! The id of the Adjustment
location - EngineMaintenanceCheckLocation! The location for the Maintenance/Check
reason - MaintenanceCheckReason! The reason for Maintenance/Check
startDate - DateTime! The start date of the Maintenance/Check. This date must be before the loss date
types - [EngineMaintenanceCheck!]! The type of Maintenance/Check
Example
{
  "companyId": "xyz789",
  "cyclesAtCheck": 123,
  "endDate": "2007-12-03T10:15:30Z",
  "engineId": "abc123",
  "hoursAtCheck": 123,
  "id": "xyz789",
  "location": "off_wing",
  "reason": "non_routine",
  "startDate": "2007-12-03T10:15:30Z",
  "types": ["borescope_inspection"]
}

AddAdjustmentAirframeEngineWorkloadInput

Fields
Input Field Description
cyclesSinceNew - Int (Optional). The number of cycles since new. The value should be between 0 and 100000. Default = null
hoursSinceNew - Int (Optional). The number of hours since new. The value should be between 0 and 200000. Default = null
Example
{"cyclesSinceNew": 987, "hoursSinceNew": 987}

AddAdjustmentAirframeInput

Fields
Input Field Description
airframeId - String! The id of the Airframe
id - String! The id of the Adjustment
Example
{
  "airframeId": "xyz789",
  "id": "abc123"
}

AddAdjustmentAirframeMaintenanceCheckInput

Fields
Input Field Description
airframeId - String! The id of the Airframe
companyId - String! The id of the Company/Organisation who performed the Maintenance/Check
cyclesAtCheck - Int (Optional) The number of cycles at the time of the Maintenance/Check. The value should be between 0 and 100000. Default = null
endDate - DateTime! The end date of the Maintenance/Check. This date must be after the start date and before the loss date
hoursAtCheck - Int (Optional) The number of hours at the time of the Maintenance/Check. The value should be between 0 and 200000. Default = null
id - String! The id of the Adjustment
reason - MaintenanceCheckReason! The reason for Maintenance/Check
startDate - DateTime! The start date of the Maintenance/Check. This date must be before the loss date
types - [AirframeMaintenanceCheck!]! The type of Maintenance/Check
Example
{
  "airframeId": "xyz789",
  "companyId": "abc123",
  "cyclesAtCheck": 987,
  "endDate": "2007-12-03T10:15:30Z",
  "hoursAtCheck": 123,
  "id": "abc123",
  "reason": "non_routine",
  "startDate": "2007-12-03T10:15:30Z",
  "types": ["a_check"]
}

AddAdjustmentAirframePartDamageInput

Fields
Input Field Description
airframeId - String! The id of the Airframe
components - [AirframeSystemComponent!]! The Airframe System/Component damaged
description - String (Optional) A description of the Part. The length should be between 1 and 64 characters. Default = null
extent - DamageExtent! The extent damage to the Part
id - String! The id of the Adjustment
manufacturer - String (Optional) The manufacturer of the Part. The length should be between 1 and 32 characters. Default = null
narrative - JSONObject A narrative describing the Damage. This must be a TipTap JSON object. Default = null
partModelNumber - String (Optional) The model/part number of the Part. The length should be between 1 and 32 characters. Default = null
serialNumber - String (Optional) The serial number of the Part. The length should be between 1 and 32 characters. Default = null
Example
{
  "airframeId": "xyz789",
  "components": ["auxiliary_power_apu_bleed_valve"],
  "description": "abc123",
  "extent": "destroyed",
  "id": "xyz789",
  "manufacturer": "abc123",
  "narrative": {},
  "partModelNumber": "abc123",
  "serialNumber": "xyz789"
}

AddAdjustmentCollaboratorInput

Fields
Input Field Description
id - String! The id of the Adjustment
stakeholderId - String! The id of the Stakeholder
userId - String! The id of the User
Example
{
  "id": "abc123",
  "stakeholderId": "abc123",
  "userId": "abc123"
}

AddAdjustmentCompanyInput

Fields
Input Field Description
domain - String The internet domain of the Company/Organisation
dunsNumber - String! The DUNS number of the Company/Organisation
formerPrimaryNames - [String!]
headQuarters - AdjustmentBasicCompanyInput
id - String! The id of the Adjustment
parent - AdjustmentBasicCompanyInput
primaryAddress - AdjustmentCompanyAddressInput
primaryIndustryCodes - [AdjustmentCompanyPrimaryIndustryCodeInput!]!
primaryName - String! The primary name of the Company/Organisation
registeredAddress - AdjustmentCompanyAddressInput
registrations - [AdjustmentCompanyRegistrationInput!]!
source - CompanySource! The source for the Company/Organisation information. Default = duns
tradeStyleNames - [String!]
ultimate - AdjustmentBasicCompanyInput
Example
{
  "domain": "xyz789",
  "dunsNumber": "xyz789",
  "formerPrimaryNames": ["xyz789"],
  "headQuarters": AdjustmentBasicCompanyInput,
  "id": "abc123",
  "parent": AdjustmentBasicCompanyInput,
  "primaryAddress": AdjustmentCompanyAddressInput,
  "primaryIndustryCodes": [
    AdjustmentCompanyPrimaryIndustryCodeInput
  ],
  "primaryName": "abc123",
  "registeredAddress": AdjustmentCompanyAddressInput,
  "registrations": [AdjustmentCompanyRegistrationInput],
  "source": "duns",
  "tradeStyleNames": ["abc123"],
  "ultimate": AdjustmentBasicCompanyInput
}

AddAdjustmentCostExpensePaymentInput

Fields
Input Field Description
amount - DenominationInput! The amount for the Payment/Disbursement
coverage - CostExpenseCoverage! The coverage for the Payment/Disbursement
dateOfPayment - DateTime! The date of the Payment/Disbursement
id - String! The id of the Adjustment
legalEntityId - String! The id of the Legal Entity for which the Payment/Disbursement is intended
reportingAmount - DenominationInput! The amount for the Payment/Disbursement in the reporting currency
Example
{
  "amount": DenominationInput,
  "coverage": "bail_guarantee",
  "dateOfPayment": "2007-12-03T10:15:30Z",
  "id": "abc123",
  "legalEntityId": "xyz789",
  "reportingAmount": DenominationInput
}

AddAdjustmentCostExpenseReserveInput

Fields
Input Field Description
amount - DenominationInput! The amount for the Reserve
coverage - CostExpenseCoverage! The coverage for the Reserve
id - String! The id of the Adjustment
legalEntityId - String (Optional) The id of the Legal Entity for which the Reserve is intended. Default = null
Example
{
  "amount": DenominationInput,
  "coverage": "bail_guarantee",
  "id": "xyz789",
  "legalEntityId": "abc123"
}

AddAdjustmentFeePaymentInput

Fields
Input Field Description
allocation - FeeAllocation! The allocation for the Payment/Disbursement
amount - DenominationInput! The amount for the Payment/Disbursement
dateOfPayment - DateTime! The date of the Payment/Disbursement
id - String! The id of the Adjustment
legalEntityId - String! The id of the Legal Entity for which the Payment/Disbursement is intended
reportingAmount - DenominationInput! The amount for the Payment/Disbursement in the reporting currency
Example
{
  "allocation": "correspondent",
  "amount": DenominationInput,
  "dateOfPayment": "2007-12-03T10:15:30Z",
  "id": "xyz789",
  "legalEntityId": "abc123",
  "reportingAmount": DenominationInput
}

AddAdjustmentFeeReserveInput

Fields
Input Field Description
allocation - FeeAllocation! The allocation for the Reserve
amount - DenominationInput! The amount for the Reserve
id - String! The id of the Adjustment
legalEntityId - String (Optional) The id of the Legal Entity for which the Reserve is intended. Default = null
Example
{
  "allocation": "correspondent",
  "amount": DenominationInput,
  "id": "xyz789",
  "legalEntityId": "xyz789"
}

AddAdjustmentFlightInput

Fields
Input Field Description
flightId - String! The id of the Flight
id - String! The id of the Adjustment
Example
{
  "flightId": "xyz789",
  "id": "xyz789"
}

AddAdjustmentIndemnityPaymentInput

Fields
Input Field Description
airframeId - String The id of the Airframe. Default = null
allocation - IndemnityAllocation! The indemnity allocation for the Payment/Disbursement
amount - DenominationInput! The amount for the payment
category - IndemnityCategory! The indemnity category for the Payment/Disbursement
coverage - IndemnityCoverage! The indemnity coverage for the Payment/Disbursement
dateOfPayment - DateTime! The date of the payment
id - String! The id of the Adjustment
legalEntityId - String! The id of the Legal Entity for which the Payment/Disbursement is intended
reportingAmount - DenominationInput! The amount for the payment in the reporting currency
Example
{
  "airframeId": "xyz789",
  "allocation": "advance_payment",
  "amount": DenominationInput,
  "category": "aircraft_hull",
  "coverage": "aircraft_hull",
  "dateOfPayment": "2007-12-03T10:15:30Z",
  "id": "abc123",
  "legalEntityId": "abc123",
  "reportingAmount": DenominationInput
}

AddAdjustmentIndemnityReserveInput

Fields
Input Field Description
airframeId - String (Optional) The id of the Airframe. Default = null
allocation - IndemnityAllocation! The indemnity allocation for the Reserve
amount - DenominationInput! The amount for the Reserve
category - IndemnityCategory! The indemnity category for the Reserve
coverage - IndemnityCoverage! The indemnity coverage for the Reserve
id - String! The id of the Adjustment
legalEntityId - String (Optional) The id of the Legal Entity for which the Reserve is intended. Default = null
Example
{
  "airframeId": "abc123",
  "allocation": "advance_payment",
  "amount": DenominationInput,
  "category": "aircraft_hull",
  "coverage": "aircraft_hull",
  "id": "xyz789",
  "legalEntityId": "xyz789"
}

AddAdjustmentIndividualInput

Fields
Input Field Description
address - LocationAddressLocalityInput! The Individual's address
dateOfBirth - DateTime! The Individual's date of birth
familyName - String! The Individual's family name/surname. The length should be between 2 and 64 characters
firstName - String! The Individual's first/given name. The length should be between 2 and 64 characters
id - String! The id of the Adjustment
nationalities - [String!]! The Individual's nationalities
sex - IndividualSex! The Individual's sex
Example
{
  "address": LocationAddressLocalityInput,
  "dateOfBirth": "2007-12-03T10:15:30Z",
  "familyName": "abc123",
  "firstName": "xyz789",
  "id": "xyz789",
  "nationalities": ["abc123"],
  "sex": "female"
}

AddAdjustmentLabelInput

Fields
Input Field Description
id - String! The id of the Adjustment
label - String! The Label to apply to the Adjustment. The length should be between 3 and 16 characters
Example
{
  "id": "abc123",
  "label": "abc123"
}

AddAdjustmentManualFlightAerodrome

Fields
Input Field Description
aerodromeId - Int! The id of the Aerodrome
date - DateTime The departure/arrival date of the Flight. Default = null
Example
{
  "aerodromeId": 123,
  "date": "2007-12-03T10:15:30Z"
}

AddAdjustmentManualFlightInput

Fields
Input Field Description
airCarrierId - Int! The id of the AirCarrier
airframeId - String! The id of the Airframe
departure - AddAdjustmentManualFlightAerodrome! The departure Aerodrome
destination - AddAdjustmentManualFlightAerodrome! The destination Aerodrome
diversion - AddAdjustmentManualFlightAerodrome (Optional) The diversion Aerodrome. Default = null
flightNumbers - AddAdjustmentManualFlightNumbers! The flight numbers for the Flight
id - String! The id of the Adjustment
Example
{
  "airCarrierId": 123,
  "airframeId": "abc123",
  "departure": AddAdjustmentManualFlightAerodrome,
  "destination": AddAdjustmentManualFlightAerodrome,
  "diversion": AddAdjustmentManualFlightAerodrome,
  "flightNumbers": AddAdjustmentManualFlightNumbers,
  "id": "abc123"
}

AddAdjustmentManualFlightNumbers

Fields
Input Field Description
codeShares - [String!] (Optional) The code shares of the Flight. Default = null
iata - String (Optional) The IATA code of the Flight. Default = null
icao - String (Optional) The ICAO code of the Flight. Default = null
Example
{
  "codeShares": ["xyz789"],
  "iata": "xyz789",
  "icao": "abc123"
}

AddAdjustmentPolicyInput

Fields
Input Field Description
claimsReference - String (Optional) The claims Reference for the Policy. The length should be between 4 and 32 characters. Default = null
id - String! The id of the Adjustment
policyId - String! The id of the Policy
Example
{
  "claimsReference": "abc123",
  "id": "abc123",
  "policyId": "xyz789"
}

AddLossNoticeAirframeEngineDamageInput

Fields
Input Field Description
components - [AirframeEngineComponent!]!
engineId - String!
extent - DamageExtent!
id - String!
narrative - JSONObject
Example
{
  "components": ["carburettor"],
  "engineId": "xyz789",
  "extent": "destroyed",
  "id": "abc123",
  "narrative": {}
}

AddLossNoticeAirframeEngineInput

Fields
Input Field Description
airframeId - String!
id - String!
lease - LeaseStatus!
manufacturerId - Int!
modelId - Int!
position - AirframeEnginePosition!
serialNumber - String
workload - AddLossNoticeAirframeEngineWorkloadInput
yearOfManufacture - Int
Example
{
  "airframeId": "abc123",
  "id": "xyz789",
  "lease": "leased",
  "manufacturerId": 987,
  "modelId": 987,
  "position": "apu",
  "serialNumber": "abc123",
  "workload": AddLossNoticeAirframeEngineWorkloadInput,
  "yearOfManufacture": 987
}

AddLossNoticeAirframeEngineWorkloadInput

Fields
Input Field Description
cyclesSinceNew - Int
hoursSinceNew - Int
Example
{"cyclesSinceNew": 123, "hoursSinceNew": 123}

AddLossNoticeAirframeInput

Fields
Input Field Description
airframeId - String!
id - String!
Example
{
  "airframeId": "xyz789",
  "id": "abc123"
}

AddLossNoticeAirframePartDamageInput

Fields
Input Field Description
airframeId - String!
components - [AirframeSystemComponent!]!
description - String
extent - DamageExtent!
id - String!
manufacturer - String
narrative - JSONObject
partModelNumber - String
serialNumber - String
Example
{
  "airframeId": "abc123",
  "components": ["auxiliary_power_apu_bleed_valve"],
  "description": "abc123",
  "extent": "destroyed",
  "id": "abc123",
  "manufacturer": "abc123",
  "narrative": {},
  "partModelNumber": "xyz789",
  "serialNumber": "xyz789"
}

AddLossNoticeFlightInput

Fields
Input Field Description
flightId - String!
id - String!
Example
{
  "flightId": "abc123",
  "id": "abc123"
}

AddLossNoticeLabelInput

Fields
Input Field Description
id - String! The id of the LossNotice
label - String! The Label to apply to the LossNotice. The length should be between 3 and 16 characters
Example
{
  "id": "abc123",
  "label": "xyz789"
}

AddLossNoticeManualFlightAerodrome

Fields
Input Field Description
aerodromeId - Int! The id of the Aerodrome
date - DateTime The departure/arrival date of the Flight. Default = null
Example
{
  "aerodromeId": 123,
  "date": "2007-12-03T10:15:30Z"
}

AddLossNoticeManualFlightInput

Fields
Input Field Description
airCarrierId - Int!
airframeId - String!
departure - AddLossNoticeManualFlightAerodrome!
destination - AddLossNoticeManualFlightAerodrome!
diversion - AddLossNoticeManualFlightAerodrome
flightNumbers - AddLossNoticeManualFlightNumbers!
id - String!
Example
{
  "airCarrierId": 987,
  "airframeId": "xyz789",
  "departure": AddLossNoticeManualFlightAerodrome,
  "destination": AddLossNoticeManualFlightAerodrome,
  "diversion": AddLossNoticeManualFlightAerodrome,
  "flightNumbers": AddLossNoticeManualFlightNumbers,
  "id": "xyz789"
}

AddLossNoticeManualFlightNumbers

Fields
Input Field Description
codeShares - [String!] (Optional) The code shares of the Flight. Default = null
iata - String (Optional) The IATA code of the Flight. Default = null
icao - String (Optional) The ICAO code of the Flight. Default = null
Example
{
  "codeShares": ["xyz789"],
  "iata": "xyz789",
  "icao": "abc123"
}

AddMarketReferenceInput

Fields
Input Field Description
id - String! The id of the Adjustment
reference - String! The Market reference
type - MarketReferenceType! The type of Market Reference
Example
{
  "id": "xyz789",
  "reference": "abc123",
  "type": "claim"
}

AddPolicyLabelInput

Fields
Input Field Description
id - String! The id of the Policy
label - String! The Label to apply to the Policy. The length should be between 3 and 16 characters
Example
{
  "id": "xyz789",
  "label": "abc123"
}

AddPolicyMarketCompanyLineInput

Fields
Input Field Description
id - String! The id of the Policy
insurerId - String! The id of the Company/Organisation
lineSize - Decimal! The size of the Line
marketId - String! The id of the Market
reference - String (Optional) The Insurer Reference. The length should be between 4 and 32 characters. Default = null
stampCode - String (Optional) The Insurer Stamp Code. The length should be between 4 and 16 characters. Default = null
warrantyPolicyId - String (Optional) The id of Warrany Policy/Risk Framework. Default = null
Example
{
  "id": "abc123",
  "insurerId": "abc123",
  "lineSize": Decimal,
  "marketId": "abc123",
  "reference": "xyz789",
  "stampCode": "xyz789",
  "warrantyPolicyId": "xyz789"
}

AddPolicyMarketCompanyLineTagInput

Fields
Input Field Description
id - String! The id of the Policy
lineId - String! The id of the Line
marketId - String! The id of the Market
tag - PolicyLineTag! The tag to add to the Line
Example
{
  "id": "abc123",
  "lineId": "xyz789",
  "marketId": "abc123",
  "tag": "claims_agreement_party"
}

AddPolicyMarketInput

Fields
Input Field Description
id - String! The id of the Policy
type - [PolicyType!]! The coverages types for the Market
Example
{
  "id": "abc123",
  "type": ["aviation_contingent_hull_all_risk"]
}

AddPolicyMarketWarrantyPolicyInput

Fields
Input Field Description
description - String! The Risk Framework/Warranty Policy Description. The length should be at most 512 characters
id - String! The id of the Policy
marketId - String! The id of the Market
reference - String! The Risk Framework/Warranty Policy Reference. The length should be between 4 and 32 characters
Example
{
  "description": "abc123",
  "id": "xyz789",
  "marketId": "xyz789",
  "reference": "xyz789"
}

AddPolicyNamedInsuredInput

Fields
Input Field Description
id - String! The id of the Policy
insuredId - String! The id of the Company/Organisation
Example
{
  "id": "abc123",
  "insuredId": "abc123"
}

AddStakeholderReferenceInput

Fields
Input Field Description
description - String (Optional) A description of the Stakeholder reference. The length should be between 1 and 512 characters. Default = null
id - String! The id of the Adjustment
reference - String! The Stakeholder's reference. The length should be between 4 and 32 characters
stakeholderId - String! The id of the Stakeholder
Example
{
  "description": "abc123",
  "id": "xyz789",
  "reference": "xyz789",
  "stakeholderId": "xyz789"
}

Adjustment

Fields
Field Name Description
actions - [AdjustmentAction!]!
airframes - [AdjustmentAirframe!]!
allocations - [AdjustmentAllocation!]!
categories - [LossCategory!]!
collaborators - [Actor!]
costsExpenses - AdjustmentCostsExpenses!
creationDate - DateTime! The date the Adjustment was created
documents - [FileMetadata!]!
executiveSummary - JSONObject
expert - Actor
fees - AdjustmentFees!
flights - [AdjustmentFlight!]!
id - String! The id of the Adjustment
images - [FileMetadata!]!
indemnity - AdjustmentIndemnity!
labels - [AdjustmentLabel!]!
lastUpdateDate - DateTime! The date the Adjustment was last updated
legalEntities - AdjustmentLegalEntities!
lossDate - DateTime! The date of loss
lossLocation - Location!
lossNotice - LossNotice
marketReferences - [MarketReference!]!
operation - Actor!
owner - Actor
recommendations - JSONObject
reportDate - DateTime! The date the loss was first reported
reporter - Actor!
reportingCurrency - String! The reporting currency for the loss
reports - [AdjustmentReport!]!
stakeholderReferences - [StakeholderReference!]!
status - AdjustmentStatus! The status of the Adjustment
statusHistory - [AdjustmentStatusChange!]!
transitions - [AdjustmentTransition!]!
unpublishedChanges - Boolean!
zone - Zone!
Example
{
  "actions": [AdjustmentAction],
  "airframes": [AdjustmentAirframe],
  "allocations": [AdjustmentAllocation],
  "categories": ["aircraft_hull"],
  "collaborators": [Actor],
  "costsExpenses": AdjustmentCostsExpenses,
  "creationDate": "2007-12-03T10:15:30Z",
  "documents": [FileMetadata],
  "executiveSummary": {},
  "expert": Actor,
  "fees": AdjustmentFees,
  "flights": [AdjustmentFlight],
  "id": "xyz789",
  "images": [FileMetadata],
  "indemnity": AdjustmentIndemnity,
  "labels": [AdjustmentLabel],
  "lastUpdateDate": "2007-12-03T10:15:30Z",
  "legalEntities": AdjustmentLegalEntities,
  "lossDate": "2007-12-03T10:15:30Z",
  "lossLocation": Location,
  "lossNotice": LossNotice,
  "marketReferences": [MarketReference],
  "operation": Actor,
  "owner": Actor,
  "recommendations": {},
  "reportDate": "2007-12-03T10:15:30Z",
  "reporter": Actor,
  "reportingCurrency": "abc123",
  "reports": [AdjustmentReport],
  "stakeholderReferences": [StakeholderReference],
  "status": "abeyance",
  "statusHistory": [AdjustmentStatusChange],
  "transitions": [AdjustmentTransition],
  "unpublishedChanges": false,
  "zone": Zone
}

AdjustmentAction

Fields
Field Name Description
action - PermissionAction! The action thay may be taken
aspect - AdjustmentAspect! The aspect of the Action
Example
{"action": "create", "aspect": "airframes"}

AdjustmentActorFilter

Fields
Input Field Description
stakeholderId - [String!]! The id of the Stakeholder
userId - String (Optional) The id of the User
Example
{
  "stakeholderId": ["xyz789"],
  "userId": "abc123"
}

AdjustmentAircraftHullIndemnity

Fields
Field Name Description
payments - [AdjustmentIndemnityPayment!]!
reserves - [AdjustmentIndemnityReserve!]!
total - [AdjustmentIndemnityTotals!]! The Adjustment Aircraft Hull Indemnity Totals
totals - AdjustmentIndemnityTotals!
Example
{
  "payments": [AdjustmentIndemnityPayment],
  "reserves": [AdjustmentIndemnityReserve],
  "total": [AdjustmentIndemnityTotals],
  "totals": AdjustmentIndemnityTotals
}

AdjustmentAirframe

Fields
Field Name Description
airframe - Airframe!
causalFactors - [AircraftHullLossCausalFactor!]! The causal factors for the Loss
creationDate - DateTime!
crew - Int
crewMembers - [AdjustmentAirframeCrewMember!]!
documents - [FileMetadata!]!
engines - [AdjustmentAirframeEngine!]!
flightId - String
flightOutcome - FlightOutcome The outcome of the Flight
flightPhase - FlightPhase The phase of the Flight
flightType - FlightType The type/purpose of the Flight
gForceLanding - Decimal
goArounds - Int
id - String! The id of the Airframe
landingWeight - Int
lastUpdateDate - DateTime!
maintenanceChecks - [AdjustmentAirframeMaintenanceCheck!]!
narrative - JSONObject A narrative describing the occurrence. This is a TipTap JSON object.
partsDamaged - [AdjustmentAirframePartDamage!]!
passengers - Int
physicalDamage - PhysicalDamage The physical damage to the Airframe
takeoffWeight - Int
workload - AdjustmentAirframeWorkload
Example
{
  "airframe": Airframe,
  "causalFactors": ["aircraft_avionics_failure"],
  "creationDate": "2007-12-03T10:15:30Z",
  "crew": 987,
  "crewMembers": [AdjustmentAirframeCrewMember],
  "documents": [FileMetadata],
  "engines": [AdjustmentAirframeEngine],
  "flightId": "xyz789",
  "flightOutcome": "cfit",
  "flightPhase": "approach_approach",
  "flightType": "commercial_charter_adhoc",
  "gForceLanding": Decimal,
  "goArounds": 987,
  "id": "xyz789",
  "landingWeight": 987,
  "lastUpdateDate": "2007-12-03T10:15:30Z",
  "maintenanceChecks": [
    AdjustmentAirframeMaintenanceCheck
  ],
  "narrative": {},
  "partsDamaged": [AdjustmentAirframePartDamage],
  "passengers": 987,
  "physicalDamage": "none",
  "takeoffWeight": 987,
  "workload": AdjustmentAirframeWorkload
}

AdjustmentAirframeCrewMember

Fields
Field Name Description
dateOfBirth - DateTime! The Crew Member's date of birth
experience - AdjustmentAirframeCrewMemberExperience The Crew Member's experience
familyName - String! The Crew Member's family name/surname
firstName - String! The Crew Member's first/given name
flightRole - AdjustmentAirframeCrewMemberFlightRole The Crew Member's flight role
id - String!
narrative - JSONObject A narrative describing the Crew Member. This is a TipTap JSON object.
nationalities - [Country!]! The Crew Member's nationalities
role - AircraftCrewRole! The role of the Crew Member during the flight
sex - IndividualSex! The sex of the Crew Member
workload - AdjustmentAirframeCrewMemberWorkload The Crew Member's workload
Example
{
  "dateOfBirth": "2007-12-03T10:15:30Z",
  "experience": AdjustmentAirframeCrewMemberExperience,
  "familyName": "xyz789",
  "firstName": "xyz789",
  "flightRole": AdjustmentAirframeCrewMemberFlightRole,
  "id": "abc123",
  "narrative": {},
  "nationalities": [Country],
  "role": "cabincrew",
  "sex": "female",
  "workload": AdjustmentAirframeCrewMemberWorkload
}

AdjustmentAirframeCrewMemberExperience

Fields
Field Name Description
licence - PilotLicence! The licence of the Crew Member
licenceCountryOfIssue - Country The country of issue for the Crew Member's licence
licenceIssueDate - DateTime The date of issue for the Crew Member's licence
totalCyclesAll - Int The total cycles for the Crew Member on all types
totalCyclesType - Int The total cycles for the Crew Member on this type
totalHoursAll - Int The total hours for the Crew Member on all types
totalHoursType - Int The total hours the Crew Member on this type
Example
{
  "licence": "atpl",
  "licenceCountryOfIssue": Country,
  "licenceIssueDate": "2007-12-03T10:15:30Z",
  "totalCyclesAll": 123,
  "totalCyclesType": 123,
  "totalHoursAll": 123,
  "totalHoursType": 987
}

AdjustmentAirframeCrewMemberFlightRole

Fields
Field Name Description
flightRole - FlightCrewRole! The flight role of the Crew Member
lastBaseCheck - DateTime The last base check of the Crew Member
lastLineCheck - DateTime The last line check of the Crew Member
lastMedicalCheck - DateTime The last medical check of the Crew Member
medicalFitness - PilotMedicalFitness! The medical fitness of the Crew Member
rank - PilotRank! The rank of the Crew Member
Example
{
  "flightRole": "pilot_flying",
  "lastBaseCheck": "2007-12-03T10:15:30Z",
  "lastLineCheck": "2007-12-03T10:15:30Z",
  "lastMedicalCheck": "2007-12-03T10:15:30Z",
  "medicalFitness": "fit_to_fly",
  "rank": "cadet_trainee"
}

AdjustmentAirframeCrewMemberWorkload

Fields
Field Name Description
totalCyclesLast7d - Int The total cycles for the last 7 days
totalCyclesLast24h - Int The total cycles for the last 24 hours
totalCyclesLast30d - Int The total cycles for the last 30 days
totalHoursLast7d - Int The total hours for the last 7 days
totalHoursLast24h - Int The total hours for the last 24 hours
totalHoursLast30d - Int The total hours for the last 30 days
Example
{
  "totalCyclesLast7d": 987,
  "totalCyclesLast24h": 123,
  "totalCyclesLast30d": 987,
  "totalHoursLast7d": 987,
  "totalHoursLast24h": 987,
  "totalHoursLast30d": 123
}

AdjustmentAirframeEngine

Fields
Field Name Description
damage - [AdjustmentAirframeEngineDamage!]!
documents - [FileMetadata!]!
id - String! The id of the Engine
images - [FileMetadata!]!
lease - LeaseStatus! The lease status of the Engine
maintenanceChecks - [AdjustmentAirframeEngineMaintenanceCheck!]!
manufacturer - EngineManufacturer!
model - EngineModel!
position - AirframeEnginePosition! The position of the Engine
repairability - Repairability! The repairability of the Engine
serialNumber - String The serial number of the Engine
workload - AdjustmentAirframeEngineWorkload
yearOfManufacture - Int The year the Engine was manufactured
Example
{
  "damage": [AdjustmentAirframeEngineDamage],
  "documents": [FileMetadata],
  "id": "xyz789",
  "images": [FileMetadata],
  "lease": "leased",
  "maintenanceChecks": [
    AdjustmentAirframeEngineMaintenanceCheck
  ],
  "manufacturer": EngineManufacturer,
  "model": EngineModel,
  "position": "apu",
  "repairability": "not_applicable",
  "serialNumber": "xyz789",
  "workload": AdjustmentAirframeEngineWorkload,
  "yearOfManufacture": 123
}

AdjustmentAirframeEngineDamage

Fields
Field Name Description
components - [AirframeEngineComponent!]! The Engine component damaged
extent - DamageExtent! The extent damage to the Engine
id - String!
narrative - JSONObject A narrative describing the Damage. This is a TipTap JSON object.
Example
{
  "components": ["carburettor"],
  "extent": "destroyed",
  "id": "xyz789",
  "narrative": {}
}

AdjustmentAirframeEngineMaintenanceCheck

Fields
Field Name Description
company - AdjustmentCompany!
cyclesAtCheck - Int The number of cycles at the time of the Maintenance/Check
endDate - DateTime! The end date of the Maintenance/Check
hoursAtCheck - Int The number of hours at the time of the Maintenance/Check
id - String! The id of the Maintenance/Check
location - EngineMaintenanceCheckLocation! The location of the Maintenance/Check
narrative - JSONObject A narrative describing the Maintenance/Check. This must be a TipTap JSON object.
reason - MaintenanceCheckReason! The reason for the Maintenance/Check
startDate - DateTime! The start date of the Maintenance/Check
types - [EngineMaintenanceCheck!]! The type of Maintenance/Check
Example
{
  "company": AdjustmentCompany,
  "cyclesAtCheck": 987,
  "endDate": "2007-12-03T10:15:30Z",
  "hoursAtCheck": 987,
  "id": "xyz789",
  "location": "off_wing",
  "narrative": {},
  "reason": "non_routine",
  "startDate": "2007-12-03T10:15:30Z",
  "types": ["borescope_inspection"]
}

AdjustmentAirframeEngineWorkload

Fields
Field Name Description
cyclesSinceNew - Int The number of hours since new
hoursSinceNew - Int The number of cycles since new
Example
{"cyclesSinceNew": 123, "hoursSinceNew": 123}

AdjustmentAirframeMaintenanceCheck

Fields
Field Name Description
company - AdjustmentCompany!
cyclesAtCheck - Int The number of cycles at the time of the Maintenance/Check
endDate - DateTime! The end date of the Maintenance/Check
hoursAtCheck - Int The number of hours at the time of the Maintenance/Check
id - String! The id of the Maintenance/Check
narrative - JSONObject A narrative describing the Maintenance/Check. This is a TipTap JSON object.
reason - MaintenanceCheckReason! The reason for the Maintenance/Check
startDate - DateTime! The start date of the Maintenance/Check
types - [AirframeMaintenanceCheck!]! The type of Maintenance/Check
Example
{
  "company": AdjustmentCompany,
  "cyclesAtCheck": 123,
  "endDate": "2007-12-03T10:15:30Z",
  "hoursAtCheck": 987,
  "id": "xyz789",
  "narrative": {},
  "reason": "non_routine",
  "startDate": "2007-12-03T10:15:30Z",
  "types": ["a_check"]
}

AdjustmentAirframePartDamage

Fields
Field Name Description
components - [AirframeSystemComponent!]! The Airframe System/Component damaged
description - String A description of the Part
documents - [FileMetadata!]!
extent - DamageExtent! The extent damage to the Part
id - String!
images - [FileMetadata!]!
manufacturer - String The manufacturer of the Part
narrative - JSONObject A narrative describing the Damage. This is a TipTap JSON object.
partModelNumber - String The model number of the Part
serialNumber - String The serial number of the Part
Example
{
  "components": ["auxiliary_power_apu_bleed_valve"],
  "description": "abc123",
  "documents": [FileMetadata],
  "extent": "destroyed",
  "id": "abc123",
  "images": [FileMetadata],
  "manufacturer": "abc123",
  "narrative": {},
  "partModelNumber": "abc123",
  "serialNumber": "xyz789"
}

AdjustmentAirframeWorkload

Fields
Field Name Description
cyclesSinceNew - Int The number of hours since new
hoursSinceNew - Int The number of cycles since new
Example
{"cyclesSinceNew": 987, "hoursSinceNew": 987}

AdjustmentAllocation

Fields
Field Name Description
creationDate - DateTime The date the Allocation was created/updated
financialSummary - AdjustmentFinancialSummary!
id - String! The id of the Allocation
missingRequirements - [AdjustmentAllocationSaveRequirement!]!
policies - [AdjustmentPolicy!]!
retained - AdjustmentRetained!
revision - Int! The revision/version of the Allocation
user - User
Example
{
  "creationDate": "2007-12-03T10:15:30Z",
  "financialSummary": AdjustmentFinancialSummary,
  "id": "abc123",
  "missingRequirements": ["CHANGED_SINCE_LAST_VERSION"],
  "policies": [AdjustmentPolicy],
  "retained": AdjustmentRetained,
  "revision": 123,
  "user": User
}

AdjustmentAllocationCoverage

Values
Enum Value Description

first_party

not_applicable

third_party

Example
"first_party"

AdjustmentAllocationSaveRequirement

Description

Requirement for an Adjustment Allocation to be saved

Values
Enum Value Description

CHANGED_SINCE_LAST_VERSION

FEES_COSTS_EXPENSES_INDEMNITY_SET

POLICY_ALLOCATION_SET

POLICY_PAID_CORRECT

POLICY_RESERVES_CORRECT

RETAINED_ALLOCATION_SET

VALUES_BALANCE

Example
"CHANGED_SINCE_LAST_VERSION"

AdjustmentAllocationType

Values
Enum Value Description

costs_expenses

fees

indemnity_aircraft_hull

indemnity_baggage_personal_effects

indemnity_bodily_injury

indemnity_ground_handling_support_equipment

indemnity_spares_aircraft_equipment

Example
"costs_expenses"

AdjustmentAspect

Description

An aspect of an adjustment

Values
Enum Value Description

airframes

allocation

categories

collaborators

costs_expenses

expert

fees

findings_advice

flights

indemnity

labels

legal_entities

loss_date

loss_location

operation

owner

report

reporting_currency

stakeholder_references

Example
"airframes"

AdjustmentBasicCompany

Fields
Field Name Description
domain - String The internet domain of the Company/Organisation
dunsNumber - String! The DUNS number of the Company/Organisation
formerPrimaryNames - [String!]
primaryAddress - AdjustmentCompanyAddress
primaryName - String! The primary name of the Company/Organisation
registeredAddress - AdjustmentCompanyAddress
tradeStyleNames - [String!]
Example
{
  "domain": "abc123",
  "dunsNumber": "abc123",
  "formerPrimaryNames": ["xyz789"],
  "primaryAddress": AdjustmentCompanyAddress,
  "primaryName": "abc123",
  "registeredAddress": AdjustmentCompanyAddress,
  "tradeStyleNames": ["xyz789"]
}

AdjustmentBasicCompanyInput

Fields
Input Field Description
domain - String The internet domain of the Company/Organisation
dunsNumber - String! The DUNS number of the Company/Organisation
formerPrimaryNames - [String!]
primaryAddress - AdjustmentCompanyAddressInput
primaryName - String! The primary name of the Company/Organisation
registeredAddress - AdjustmentCompanyAddressInput
tradeStyleNames - [String!]
Example
{
  "domain": "xyz789",
  "dunsNumber": "abc123",
  "formerPrimaryNames": ["abc123"],
  "primaryAddress": AdjustmentCompanyAddressInput,
  "primaryName": "xyz789",
  "registeredAddress": AdjustmentCompanyAddressInput,
  "tradeStyleNames": ["abc123"]
}

AdjustmentCompany

Fields
Field Name Description
domain - String The internet domain of the Company/Organisation
dunsNumber - String! The DUNS number of the Company/Organisation
formerPrimaryNames - [String!]
headQuarters - AdjustmentBasicCompany
id - String!
parent - AdjustmentBasicCompany
primaryAddress - AdjustmentCompanyAddress
primaryIndustryCodes - [AdjustmentCompanyPrimaryIndustryCode!]!
primaryName - String! The primary name of the Company/Organisation
registeredAddress - AdjustmentCompanyAddress
registrations - [AdjustmentCompanyRegistration!]!
tradeStyleNames - [String!]
ultimate - AdjustmentBasicCompany
Example
{
  "domain": "abc123",
  "dunsNumber": "xyz789",
  "formerPrimaryNames": ["xyz789"],
  "headQuarters": AdjustmentBasicCompany,
  "id": "abc123",
  "parent": AdjustmentBasicCompany,
  "primaryAddress": AdjustmentCompanyAddress,
  "primaryIndustryCodes": [
    AdjustmentCompanyPrimaryIndustryCode
  ],
  "primaryName": "abc123",
  "registeredAddress": AdjustmentCompanyAddress,
  "registrations": [AdjustmentCompanyRegistration],
  "tradeStyleNames": ["xyz789"],
  "ultimate": AdjustmentBasicCompany
}

AdjustmentCompanyAddress

Fields
Field Name Description
addressLine1 - String
addressLine2 - String
country - Country
county - String
locality - String
postalCode - String
region - String
streetName - String
Example
{
  "addressLine1": "abc123",
  "addressLine2": "xyz789",
  "country": Country,
  "county": "xyz789",
  "locality": "xyz789",
  "postalCode": "xyz789",
  "region": "xyz789",
  "streetName": "abc123"
}

AdjustmentCompanyAddressInput

Fields
Input Field Description
addressLine1 - String
addressLine2 - String
countryCode - String
county - String
locality - String
postalCode - String
region - String
streetName - String
Example
{
  "addressLine1": "abc123",
  "addressLine2": "abc123",
  "countryCode": "xyz789",
  "county": "xyz789",
  "locality": "abc123",
  "postalCode": "xyz789",
  "region": "abc123",
  "streetName": "xyz789"
}

AdjustmentCompanyPrimaryIndustryCode

Fields
Field Name Description
code - String!
description - String!
Example
{
  "code": "abc123",
  "description": "abc123"
}

AdjustmentCompanyPrimaryIndustryCodeInput

Fields
Input Field Description
code - String!
description - String!
Example
{
  "code": "abc123",
  "description": "abc123"
}

AdjustmentCompanyQueryFilters

Fields
Input Field Description
id - String! The id of the Adjustment
Example
{"id": "abc123"}

AdjustmentCompanyRegistration

Fields
Field Name Description
code - Int!
description - String!
number - String!
Example
{
  "code": 987,
  "description": "xyz789",
  "number": "abc123"
}

AdjustmentCompanyRegistrationInput

Fields
Input Field Description
code - Int!
description - String!
number - String!
Example
{
  "code": 987,
  "description": "abc123",
  "number": "xyz789"
}

AdjustmentCostExpensePayment

Fields
Field Name Description
amount - Denomination!
coverage - CostExpenseCoverage! The coverage for the Payment/Disbursement
dateOfChange - DateTime! The date the Payment/Disbursement was created/updated
dateOfPayment - DateTime! The date of the Payment/Disbursement
id - String! The id of the Payment/Disbursement
legalEntity - AdjustmentLegalEntity
narrative - JSONObject A narrative describing the payment. This must be a TipTap JSON object.
reportingAmount - Denomination!
revision - Int! The revision/version of the Payment/Disbursement
user - User!
Example
{
  "amount": Denomination,
  "coverage": "bail_guarantee",
  "dateOfChange": "2007-12-03T10:15:30Z",
  "dateOfPayment": "2007-12-03T10:15:30Z",
  "id": "xyz789",
  "legalEntity": AdjustmentCompany,
  "narrative": {},
  "reportingAmount": Denomination,
  "revision": 123,
  "user": User
}

AdjustmentCostExpenseReserve

Fields
Field Name Description
amount - Denomination!
coverage - CostExpenseCoverage! The coverage for the Reserve
dateOfChange - DateTime! The date the Reserve was created/updated
id - String! The id of the Reserve
legalEntity - AdjustmentLegalEntity
narrative - JSONObject A narrative describing the Reserve. This must be a TipTap JSON object.
reportingAmount - Denomination!
revision - Int! The revision/version of the Reserve
user - User!
Example
{
  "amount": Denomination,
  "coverage": "bail_guarantee",
  "dateOfChange": "2007-12-03T10:15:30Z",
  "id": "xyz789",
  "legalEntity": AdjustmentCompany,
  "narrative": {},
  "reportingAmount": Denomination,
  "revision": 123,
  "user": User
}

AdjustmentCostExpenseTotals

Fields
Field Name Description
count - Int!
payments - Denomination!
reserves - Denomination!
Example
{
  "count": 123,
  "payments": Denomination,
  "reserves": Denomination
}

AdjustmentCostsExpenses

Fields
Field Name Description
payments - [AdjustmentCostExpensePayment!]!
reserves - [AdjustmentCostExpenseReserve!]!
totals - AdjustmentCostExpenseTotals!
Example
{
  "payments": [AdjustmentCostExpensePayment],
  "reserves": [AdjustmentCostExpenseReserve],
  "totals": AdjustmentCostExpenseTotals
}

AdjustmentCostsExpensesPaymentQueryFilters

Fields
Input Field Description
id - String! The id of the Adjustment
Example
{"id": "abc123"}

AdjustmentCostsExpensesReserveQueryFilters

Fields
Input Field Description
id - String! The id of the Adjustment
Example
{"id": "abc123"}

AdjustmentDateFilter

Fields
Input Field Description
end - DateTime
start - DateTime
Example
{
  "end": "2007-12-03T10:15:30Z",
  "start": "2007-12-03T10:15:30Z"
}

AdjustmentFeePayment

Fields
Field Name Description
allocation - FeeAllocation! The allocation for the Payment/Disbursement
amount - Denomination!
dateOfChange - DateTime! The date the Payment/Disbursement was created/updated
dateOfPayment - DateTime! The date of the Payment/Disbursement
id - String! The id of the Payment/Disbursement
legalEntity - AdjustmentLegalEntity
narrative - JSONObject A narrative describing the Payment/Disbursement. This is a TipTap JSON object.
reportingAmount - Denomination!
revision - Int! The revision/version of the Payment/Disbursement
user - User!
Example
{
  "allocation": "correspondent",
  "amount": Denomination,
  "dateOfChange": "2007-12-03T10:15:30Z",
  "dateOfPayment": "2007-12-03T10:15:30Z",
  "id": "abc123",
  "legalEntity": AdjustmentCompany,
  "narrative": {},
  "reportingAmount": Denomination,
  "revision": 987,
  "user": User
}

AdjustmentFeeReserve

Fields
Field Name Description
allocation - FeeAllocation! The allocation for the Reserve
amount - Denomination!
dateOfChange - DateTime! The date the Reserve was created/updated
id - String! The id of the Reserve
legalEntity - AdjustmentLegalEntity
narrative - JSONObject A narrative describing the Reserve. This is a TipTap JSON object.
reportingAmount - Denomination!
revision - Int! The revision/version of the Reserve
user - User!
Example
{
  "allocation": "correspondent",
  "amount": Denomination,
  "dateOfChange": "2007-12-03T10:15:30Z",
  "id": "xyz789",
  "legalEntity": AdjustmentCompany,
  "narrative": {},
  "reportingAmount": Denomination,
  "revision": 987,
  "user": User
}

AdjustmentFeeTotals

Fields
Field Name Description
count - Int!
payments - Denomination!
reserves - Denomination!
Example
{
  "count": 987,
  "payments": Denomination,
  "reserves": Denomination
}

AdjustmentFees

Fields
Field Name Description
payments - [AdjustmentFeePayment!]!
reserves - [AdjustmentFeeReserve!]!
totals - AdjustmentFeeTotals!
Example
{
  "payments": [AdjustmentFeePayment],
  "reserves": [AdjustmentFeeReserve],
  "totals": AdjustmentFeeTotals
}

AdjustmentFeesPaymentQueryFilters

Fields
Input Field Description
id - String! The id of the Adjustment
Example
{"id": "abc123"}

AdjustmentFeesReserveQueryFilters

Fields
Input Field Description
id - String! The id of the Adjustment
Example
{"id": "xyz789"}

AdjustmentFinancialSummary

Fields
Field Name Description
lines - [AdjustmentFinancialSummaryLine!]!
Example
{"lines": [AdjustmentFinancialSummaryLine]}

AdjustmentFinancialSummaryLine

Fields
Field Name Description
coverage - AdjustmentAllocationCoverage! The coverage of the Allocation
paid - Denomination! The paid amount
reserved - Denomination! The reserved amount
type - AdjustmentAllocationType! The type of the Allocation
Example
{
  "coverage": "first_party",
  "paid": Denomination,
  "reserved": Denomination,
  "type": "costs_expenses"
}

AdjustmentFlight

Fields
Field Name Description
airframeId - String
creationDate - DateTime!
flight - Flight!
id - String! The id of the Flight
lastUpdateDate - DateTime!
source - FlightSource! The source of the Flight information
Example
{
  "airframeId": "xyz789",
  "creationDate": "2007-12-03T10:15:30Z",
  "flight": Flight,
  "id": "abc123",
  "lastUpdateDate": "2007-12-03T10:15:30Z",
  "source": "api"
}

AdjustmentIndemnity

Fields
Field Name Description
aircraftHull - AdjustmentAircraftHullIndemnity!
Example
{"aircraftHull": AdjustmentAircraftHullIndemnity}

AdjustmentIndemnityCoverageTotals

Fields
Field Name Description
count - Int!
payments - Denomination!
reserves - Denomination!
Example
{
  "count": 123,
  "payments": Denomination,
  "reserves": Denomination
}

AdjustmentIndemnityPayment

Fields
Field Name Description
airframe - AdjustmentAirframe
allocation - IndemnityAllocation! The indemnity allocation for the Payment/Disbursement
amount - Denomination!
category - IndemnityCategory! The indemnity category for the Payment/Disbursement
coverage - IndemnityCoverage! The indemnity coverage for the Payment/Disbursement
dateOfChange - DateTime! The date the Payment/Disbursement was created/updated
dateOfPayment - DateTime! The date of the Payment/Disbursement
id - String! The id of the Payment/Disbursement
legalEntity - AdjustmentLegalEntity
narrative - JSONObject A narrative describing the Payment/Disbursement. This is a TipTap JSON object.
reportingAmount - Denomination!
revision - Int! The revision/version of the Payment/Disbursement
user - User!
Example
{
  "airframe": AdjustmentAirframe,
  "allocation": "advance_payment",
  "amount": Denomination,
  "category": "aircraft_hull",
  "coverage": "aircraft_hull",
  "dateOfChange": "2007-12-03T10:15:30Z",
  "dateOfPayment": "2007-12-03T10:15:30Z",
  "id": "abc123",
  "legalEntity": AdjustmentCompany,
  "narrative": {},
  "reportingAmount": Denomination,
  "revision": 123,
  "user": User
}

AdjustmentIndemnityPaymentQueryFilters

Fields
Input Field Description
category - IndemnityCategory! The indemnity category
id - String! The id of the Adjustment
Example
{
  "category": "aircraft_hull",
  "id": "abc123"
}

AdjustmentIndemnityReserve

Fields
Field Name Description
airframe - AdjustmentAirframe
allocation - IndemnityAllocation! The indemnity allocation for the Reserve
amount - Denomination!
category - IndemnityCategory! The indemnity category for the Reserve
coverage - IndemnityCoverage! The indemnity coverage for the Reserve
dateOfChange - DateTime! The date the Reserve was created/updated
id - String! The id of the Reserve
legalEntity - AdjustmentLegalEntity
narrative - JSONObject A narrative describing the Reserve. This is a TipTap JSON object.
reportingAmount - Denomination!
revision - Int! The revision/version of the Reserve
user - User!
Example
{
  "airframe": AdjustmentAirframe,
  "allocation": "advance_payment",
  "amount": Denomination,
  "category": "aircraft_hull",
  "coverage": "aircraft_hull",
  "dateOfChange": "2007-12-03T10:15:30Z",
  "id": "xyz789",
  "legalEntity": AdjustmentCompany,
  "narrative": {},
  "reportingAmount": Denomination,
  "revision": 987,
  "user": User
}

AdjustmentIndemnityReserveQueryFilters

Fields
Input Field Description
category - IndemnityCategory! The indemnity category
id - String! The id of the Adjustment
Example
{
  "category": "aircraft_hull",
  "id": "abc123"
}

AdjustmentIndemnityTotals

Fields
Field Name Description
count - Int!
firstParty - AdjustmentIndemnityCoverageTotals!
payments - Denomination!
reserves - Denomination!
thirdParty - AdjustmentIndemnityCoverageTotals!
Example
{
  "count": 987,
  "firstParty": AdjustmentIndemnityCoverageTotals,
  "payments": Denomination,
  "reserves": Denomination,
  "thirdParty": AdjustmentIndemnityCoverageTotals
}

AdjustmentIndividual

Fields
Field Name Description
address - LocationAddressLocality! The Individual's address
dateOfBirth - DateTime! The Individual's date of birth
familyName - String! The Individual's family name/surname
firstName - String! The Individual's first/given name
id - String! The id of the Individual
nationalities - [Country!]! The Individual's nationalities
sex - IndividualSex! The Individual's sex
Example
{
  "address": LocationAddressLocality,
  "dateOfBirth": "2007-12-03T10:15:30Z",
  "familyName": "abc123",
  "firstName": "abc123",
  "id": "xyz789",
  "nationalities": [Country],
  "sex": "female"
}

AdjustmentIndividualQueryFilters

Fields
Input Field Description
id - String! The id of the Adjustment
Example
{"id": "abc123"}

AdjustmentLabel

Fields
Field Name Description
id - String! The id of the Label
label - String! The Label applied to the Adjustment
type - LabelType! The type of Label
Example
{
  "id": "abc123",
  "label": "abc123",
  "type": "auto"
}

AdjustmentLegalEntities

Fields
Field Name Description
companies - [AdjustmentCompany!]!
individuals - [AdjustmentIndividual!]!
Example
{
  "companies": [AdjustmentCompany],
  "individuals": [AdjustmentIndividual]
}

AdjustmentLegalEntity

Example
AdjustmentCompany

AdjustmentPolicy

Fields
Field Name Description
claimsReference - String The claims Reference for the Policy
id - String! The id of the Policy
lines - [AdjustmentPolicyAllocationLine!]!
policy - Policy!
Example
{
  "claimsReference": "xyz789",
  "id": "xyz789",
  "lines": [AdjustmentPolicyAllocationLine],
  "policy": Policy
}

AdjustmentPolicyAllocationLine

Fields
Field Name Description
coverage - AdjustmentAllocationCoverage! The coverage of the Allocation
id - String! The id of the Line
paid - Denomination The paid amount of the Allocation
reserved - Denomination The reserved amount of the Allocation
type - AdjustmentAllocationType! The type of the Allocation
Example
{
  "coverage": "first_party",
  "id": "xyz789",
  "paid": Denomination,
  "reserved": Denomination,
  "type": "costs_expenses"
}

AdjustmentQueryFilters

Fields
Input Field Description
categories - [LossCategory!]
creationDate - AdjustmentDateFilter
expert - [AdjustmentActorFilter!]
label - [String!]
lastUpdateDate - AdjustmentDateFilter
lossDate - AdjustmentDateFilter
operation - [String!]
owner - [AdjustmentActorFilter!]
references - [AdjustmentReferenceFilter!]
reportDate - AdjustmentDateFilter
reporter - [String!]
status - [AdjustmentStatus!]
zoneId - String
Example
{
  "categories": ["aircraft_hull"],
  "creationDate": AdjustmentDateFilter,
  "expert": [AdjustmentActorFilter],
  "label": ["xyz789"],
  "lastUpdateDate": AdjustmentDateFilter,
  "lossDate": AdjustmentDateFilter,
  "operation": ["abc123"],
  "owner": [AdjustmentActorFilter],
  "references": [AdjustmentReferenceFilter],
  "reportDate": AdjustmentDateFilter,
  "reporter": ["abc123"],
  "status": ["abeyance"],
  "zoneId": "abc123"
}

AdjustmentQuerySortField

Description

The field to be used to sort the adjustments

Values
Enum Value Description

creationDate

lastUpdateDate

lossDate

reportDate

Example
"creationDate"

AdjustmentQuerySortOrder

Description

The sort order for the adjustments

Values
Enum Value Description

ascending

descending

Example
"ascending"

AdjustmentQuerySorting

Fields
Input Field Description
field - AdjustmentQuerySortField!
order - AdjustmentQuerySortOrder
Example
{"field": "creationDate", "order": "ascending"}

AdjustmentReferenceFilter

Fields
Input Field Description
reference - [String!]!
type - ReferenceType!
Example
{"reference": ["abc123"], "type": "actor"}

AdjustmentReport

Fields
Field Name Description
creationDate - DateTime! The date the Report was created/updated
id - String! The id of the Report
revision - Int! The revision/version of the Report
user - User!
Example
{
  "creationDate": "2007-12-03T10:15:30Z",
  "id": "abc123",
  "revision": 123,
  "user": User
}

AdjustmentRetained

Fields
Field Name Description
lines - [AdjustmentRetainedAllocationLine!]!
Example
{"lines": [AdjustmentRetainedAllocationLine]}

AdjustmentRetainedAllocationLine

Fields
Field Name Description
amount - Denomination The amount of the Allocation
coverage - AdjustmentAllocationCoverage! The coverage of the Allocation
id - String! The id of the Line
type - AdjustmentAllocationType! The type of the Allocation
Example
{
  "amount": Denomination,
  "coverage": "first_party",
  "id": "xyz789",
  "type": "costs_expenses"
}

AdjustmentStatus

Description

The current state of the adjustment

Values
Enum Value Description

abeyance

assessment

closed

draft

duplicate

open

review

Example
"abeyance"

AdjustmentStatusChange

Fields
Field Name Description
dateOfChange - DateTime! The date of change
id - String! The id of the Change
status - AdjustmentStatus! The new status of the Adjustment
user - User!
Example
{
  "dateOfChange": "2007-12-03T10:15:30Z",
  "id": "xyz789",
  "status": "abeyance",
  "user": User
}

AdjustmentTransition

Fields
Field Name Description
enabled - Boolean! The enabled status of the Transition
missingRequirements - [AdjustmentTransitionRequirement!]! The missing/unmet requirements for the Transition
primary - Boolean! The primary status of the Transition
status - AdjustmentStatus! The status of the Adjustment after the Transition
Example
{
  "enabled": true,
  "missingRequirements": ["AIRCRAFT_ADDED"],
  "primary": false,
  "status": "abeyance"
}

AdjustmentTransitionRequirement

Description

Requirement for an Adjustment to transition to a new state

Values
Enum Value Description

AIRCRAFT_ADDED

AIRCRAFT_ENGINE_REPAIRABILITY_SET

AIRCRAFT_PHYSICAL_DAMAGE_SET

ALLOCATION_INCOMPLETE

ALLOCATION_VERSION_SAVED

COSTS_EXPENSES_RESERVES_ZERO

EXECUTIVE_SUMMARY_SET

EXPERT_SET

FEES_RESERVES_ZERO

FEES_SET

INDEMNITY_RESERVES_ZERO

INDEMNITY_SET

RECOMMENDATIONS_SET

REPORT_VERSION_SAVED

UPDATE_PERMISSION

Example
"AIRCRAFT_ADDED"

Aerodrome

Fields
Field Name Description
country - Country!
elevation - Int
iataCode - String
icaoCode - String
id - Int!
latitude - Decimal!
longitude - Decimal!
name - String!
runways - [Runway!]!
subdivision - Subdivision
timeZone - String!
type - AerodromeType!
Example
{
  "country": Country,
  "elevation": 123,
  "iataCode": "xyz789",
  "icaoCode": "xyz789",
  "id": 987,
  "latitude": Decimal,
  "longitude": Decimal,
  "name": "xyz789",
  "runways": [Runway],
  "subdivision": Subdivision,
  "timeZone": "abc123",
  "type": AerodromeType
}

AerodromeQuery

Fields
Input Field Description
iataCode - String The IATA code of the Aerodrome. Default = null
icaoCode - String The ICAO code of the Aerodrome. Default = null
id - Int The id of the Aerodrome. Default = null
Example
{
  "iataCode": "xyz789",
  "icaoCode": "xyz789",
  "id": 123
}

AerodromeType

Fields
Field Name Description
id - String!
name - String!
Example
{
  "id": "abc123",
  "name": "abc123"
}

AirCarrier

Fields
Field Name Description
callsigns - [String!]!
countries - [Country!]!
iata - [String!]!
icao - [String!]!
id - Int!
names - [String!]!
Example
{
  "callsigns": ["xyz789"],
  "countries": [Country],
  "iata": ["xyz789"],
  "icao": ["xyz789"],
  "id": 123,
  "names": ["xyz789"]
}

AirCarrierQuery

Fields
Input Field Description
iataCode - String The IATA code of the Air Carrier/Operator. Default = null
icaoCode - String The ICAO code of the Air Carrier/Operator. Default = null
id - Int The id of the Air Carrier/Operator. Default = null
Example
{
  "iataCode": "xyz789",
  "icaoCode": "xyz789",
  "id": 987
}

Aircraft

Fields
Field Name Description
absoluteCeiling - Int
engineCount - Int!
engineType - AircraftType!
fuelCapacity - Int
height - Int
icaoClassification - String!
landingDistance - Int
length - Int
maximumClimbRate - Int
maximumRange - Int
maximumSpeed - Int
mtow - Int
optimumCeiling - Int
optimumSpeed - Int
personsOnBoard - Int
tailConfiguration - AircraftTailConfiguration!
takeoffDistance - Int
type - AircraftType!
typeDesignator - AircraftTypeDesignator!
wakeTurbulenceCategory - AircraftWakeTurbulenceCategory!
wingPosition - AircraftWingPosition!
wingSpan - Int
wingType - AircraftWingType!
Example
{
  "absoluteCeiling": 123,
  "engineCount": 987,
  "engineType": AircraftType,
  "fuelCapacity": 123,
  "height": 123,
  "icaoClassification": "abc123",
  "landingDistance": 987,
  "length": 987,
  "maximumClimbRate": 123,
  "maximumRange": 987,
  "maximumSpeed": 987,
  "mtow": 123,
  "optimumCeiling": 123,
  "optimumSpeed": 987,
  "personsOnBoard": 987,
  "tailConfiguration": AircraftTailConfiguration,
  "takeoffDistance": 123,
  "type": AircraftType,
  "typeDesignator": AircraftTypeDesignator,
  "wakeTurbulenceCategory": AircraftWakeTurbulenceCategory,
  "wingPosition": AircraftWingPosition,
  "wingSpan": 987,
  "wingType": AircraftWingType
}

AircraftCrewRole

Values
Enum Value Description

cabincrew

flightcrew

groundcrew

Example
"cabincrew"

AircraftFamily

Fields
Field Name Description
id - Int!
label - String!
Example
{"id": 987, "label": "xyz789"}

AircraftHullLossCausalFactor

Values
Enum Value Description

aircraft_avionics_failure

aircraft_collision_ground_vehicle

aircraft_collision_infrastructure_installations

aircraft_collision_other_aircraft

aircraft_electrical_system_failure

aircraft_fire

aircraft_flap_system_failure

aircraft_flying_control_failure

aircraft_foreign_object_damage_animal_bird

aircraft_foreign_object_damage_debris

aircraft_foreign_object_damage_drone_uav

aircraft_foreign_object_damage_other

aircraft_foreign_object_damage_water_ice

aircraft_fuel_system_contamination

aircraft_fuel_system_failure

aircraft_fuel_tank_contamination

aircraft_hydraulic_system_failure

aircraft_landing_gear_failure

aircraft_navigation_system_failure

aircraft_pressurisation_system_failure

aircraft_safety_system_failure

aircraft_separation_of_part

aircraft_structural_failure

atc_controller_competence

atc_equipment_failure

atc_incorrect_clearance

atc_incorrect_instructions

atc_incorrect_read_back

atc_runway_conflict

atc_traffic_conflict

flight_operations_aircraft_configuration

flight_operations_aircraft_mishandling

flight_operations_checklist_usage

flight_operations_crew_crew_communications

flight_operations_crew_error

flight_operations_crew_external_communications

flight_operations_crew_incapacitation

flight_operations_crew_qualifications

flight_operations_crew_training

flight_operations_emergency_landing_off_runway

flight_operations_emergency_landing_on_runway

flight_operations_flight_planning

flight_operations_fuel_exhaustion

flight_operations_fuel_planning_monitoring

flight_operations_gear_up_landing

flight_operations_go_around

flight_operations_heavy_landing

flight_operations_incorrect_take_off_settings

flight_operations_incorrect_thrust

flight_operations_landed_long

flight_operations_landed_short

flight_operations_landing_below_minima

flight_operations_non_stabilised_approach

flight_operations_rejected_takeoff

flight_operations_runway_excursion

flight_operations_runway_incursion

flight_operations_runway_overrun

flight_operations_standard_operating_procedures

flight_operations_tail_strike

flight_operations_weight_balance

ground_operations_aircraft_loading

ground_operations_aircraft_refuelling

ground_operations_loadsheet_error

ground_operations_taxi_procedure

ground_operations_towing_pushback_procedure

maintenance_engineering_engineer_training_competence

maintenance_engineering_failure_to_follow_directives_bulletins

maintenance_engineering_improper_maintenance

maintenance_engineering_maintenance_schedule_adherance_failure

maintenance_engineering_non_approved_maintenance_practices

maintenance_engineering_non_approved_parts

maintenance_engineering_non_approved_repairs

other_design_failure

propulsion_engine_failure

propulsion_engine_fire

propulsion_engine_flame_out

propulsion_engine_ingestion

propulsion_foreign_object_damage_animal_bird

propulsion_foreign_object_damage_debris

propulsion_foreign_object_damage_drone_uav

propulsion_foreign_object_damage_other

propulsion_foreign_object_damage_water_ice

propulsion_propeller_failure

propulsion_separation_of_part

propulsion_thrust_reverse_failure

propulsion_uncontained_engine_failure

security_air2air_weapon

security_confiscation_theft

security_hazardous_material_cabin

security_hazardous_material_cargo

security_hijack

security_improperly_manifested_load

security_passenger_crew_behaviour

security_sabotage

security_surface2air_weapon

weather_environment_cross_wind

weather_environment_hail

weather_environment_high_wind

weather_environment_icing_conditions

weather_environment_lightning_strike

weather_environment_low_visibility

weather_environment_rain

weather_environment_snow

weather_environment_thunderstorm

weather_environment_turbulence

weather_environment_volacanic_ash

weather_environment_windshear_downdraft

Example
"aircraft_avionics_failure"

AircraftManufacturer

Fields
Field Name Description
id - Int!
label - String!
Example
{"id": 123, "label": "xyz789"}

AircraftMasterSeries

Fields
Field Name Description
id - Int!
label - String!
Example
{"id": 123, "label": "abc123"}

AircraftModel

Fields
Field Name Description
id - Int!
label - String!
Example
{"id": 987, "label": "abc123"}

AircraftSeries

Fields
Field Name Description
id - Int!
label - String!
Example
{"id": 987, "label": "abc123"}

AircraftTailConfiguration

Fields
Field Name Description
id - Int!
label - String!
Example
{"id": 987, "label": "xyz789"}

AircraftType

Fields
Field Name Description
id - Int!
label - String!
Example
{"id": 987, "label": "xyz789"}

AircraftTypeDesignator

Fields
Field Name Description
id - Int!
label - String!
Example
{"id": 987, "label": "xyz789"}

AircraftWakeTurbulenceCategory

Fields
Field Name Description
id - Int!
label - String!
Example
{"id": 123, "label": "abc123"}

AircraftWingPosition

Fields
Field Name Description
id - Int!
label - String!
Example
{"id": 123, "label": "abc123"}

AircraftWingType

Fields
Field Name Description
id - Int!
label - String!
Example
{"id": 987, "label": "abc123"}

Airframe

Fields
Field Name Description
aircraft - Aircraft!
build - [AirframeBuild!]!
engineFamily - EngineFamily
engineManufacturer - EngineManufacturer
engineMasterSeries - EngineMasterSeries
engineModel - EngineModel
engineSeries - EngineSeries
family - AircraftFamily
hexCode - String
id - String!
lineNumber - String
manufacturer - AircraftManufacturer!
masterSeries - AircraftMasterSeries
model - AircraftModel!
operators - [AirframeOperator!]!
registrations - [AirframeRegistration!]!
serialNumber - String!
series - AircraftSeries!
status - AirframeStatus!
Example
{
  "aircraft": Aircraft,
  "build": [AirframeBuild],
  "engineFamily": EngineFamily,
  "engineManufacturer": EngineManufacturer,
  "engineMasterSeries": EngineMasterSeries,
  "engineModel": EngineModel,
  "engineSeries": EngineSeries,
  "family": AircraftFamily,
  "hexCode": "xyz789",
  "id": "abc123",
  "lineNumber": "abc123",
  "manufacturer": AircraftManufacturer,
  "masterSeries": AircraftMasterSeries,
  "model": AircraftModel,
  "operators": [AirframeOperator],
  "registrations": [AirframeRegistration],
  "serialNumber": "abc123",
  "series": AircraftSeries,
  "status": AirframeStatus
}

AirframeBuild

Fields
Field Name Description
id - Int!
label - String!
Example
{"id": 987, "label": "xyz789"}

AirframeEngineComponent

Description

The component of the engine

Values
Enum Value Description

carburettor

combustion_section

cowling

engine_block

engine_cylinder

fan_blade

high_pressure_compressor

high_pressure_turbine

intake

intermediate_pressure_compressor

intermediate_pressure_turbine

low_pressure_compressor

low_pressure_turbine

magneto

nacelle

propeller

reduction_gearbox

spinner

thrust_reverser

Example
"carburettor"

AirframeEnginePosition

Description

The position of the engine

Values
Enum Value Description

apu

no1

no2

no3

no4

Example
"apu"

AirframeMaintenanceCheck

Values
Enum Value Description

a_check

annual_inspection

b_check

c_check

d_check

major_repair

minor_repair

other

routine_inspection

scheduled_maintenance

unscheduled_maintenance

Example
"a_check"

AirframeOperator

Fields
Field Name Description
endDate - DateTime
operator - AirCarrier!
startDate - DateTime!
Example
{
  "endDate": "2007-12-03T10:15:30Z",
  "operator": AirCarrier,
  "startDate": "2007-12-03T10:15:30Z"
}

AirframeQuery

Fields
Input Field Description
id - String The id of the Airframe. Default = null
registration - String The registration of the Airframe. Default = null
typeDesignator - String The type designator of the Airframe. Default = null
Example
{
  "id": "abc123",
  "registration": "xyz789",
  "typeDesignator": "xyz789"
}

AirframeRegistration

Fields
Field Name Description
endDate - DateTime
registration - String!
startDate - DateTime!
Example
{
  "endDate": "2007-12-03T10:15:30Z",
  "registration": "abc123",
  "startDate": "2007-12-03T10:15:30Z"
}

AirframeStatus

Fields
Field Name Description
id - Int!
label - String!
Example
{"id": 987, "label": "abc123"}

AirframeSystemComponent

Description

The component of the airframe

Values
Enum Value Description

auxiliary_power_apu_bleed_valve

auxiliary_power_apu_generator

auxiliary_power_apu_pump

avionics_air_traffic_control_transponder

avionics_flight_management_computer

avionics_flight_management_guidance_computer

avionics_master_control_display_unit

avionics_mode_control_panel

cabin_cabin_crew_seat

cabin_cabin_window

cabin_flight_deck_door

cabin_flight_deck_seat

cabin_galley

cabin_passenger_seat

cabin_passenger_toilet

communications_hf_aerial

communications_hf_radio

communications_ils_aerial

communications_vhf_aerial

communications_vhf_radio

electrical_system_anti_collision_light

electrical_system_anti_ice_light

electrical_system_generator

electrical_system_integrated_drive_generator

electrical_system_inverter

electrical_system_landing_light

electrical_system_navigation_light

electrical_system_taxi_light

empanage_elevator

empanage_horizontal_stabiliser

empanage_horizontal_stabiliser_fairing

empanage_horizontal_stabiliser_leading_edge

empanage_rudder

empanage_structure

empanage_tailcone

empanage_vertical_stabiliser

empanage_vertical_stabiliser_fairing

empanage_vertical_stabiliser_leading_edge

fuselage_aft

fuselage_bulkhead

fuselage_drain_mast

fuselage_fairing

fuselage_flight_deck_cockpit

fuselage_forward

fuselage_frame

fuselage_passenger_door

fuselage_pressure_bulkhead

fuselage_radome

fuselage_skin

fuselage_stringer

fuselage_structure

fuselage_tailcone

hydraulic_system_hose

hydraulic_system_motor

hydraulic_system_pipe

hydraulic_system_pump

hydraulic_system_valve

landing_gear_actuator

landing_gear_axle

landing_gear_beam

landing_gear_brake

landing_gear_inner_cylinder

landing_gear_strut

landing_gear_trunnion

landing_gear_tyre

landing_gear_uplock

landing_gear_wheel

pylon_fairing

pylon_mount

pylon_structure

wing_aileron

wing_box

wing_flap_drive

wing_leading_edge_flap

wing_rib

wing_skin

wing_spar

wing_structure

wing_tip

wing_trailing_edge_flap

wing_winglet

Example
"auxiliary_power_apu_bleed_valve"

AuthStrategy

Fields
Field Name Description
description - String!
id - String!
strategy - IdentityProviderStrategy!
url - String!
Example
{
  "description": "xyz789",
  "id": "abc123",
  "strategy": "LOCAL",
  "url": "abc123"
}

Boolean

Description

The Boolean scalar type represents true or false.

ClassOfBusiness

Description

The class of business

Values
Enum Value Description

aviation

Example
"aviation"

Company

Fields
Field Name Description
addressLine1 - String
addressLine2 - String
artwork - [CompanyArtworkMetadata!]!
country - Country!
county - String
group - Group
id - String!
locality - String
name - String!
postalCode - String
region - String
reportSettings - CompanyReportSettings
stampCodes - [String!]!
streetName - String
users - [User!]
Example
{
  "addressLine1": "abc123",
  "addressLine2": "abc123",
  "artwork": [CompanyArtworkMetadata],
  "country": Country,
  "county": "xyz789",
  "group": Group,
  "id": "abc123",
  "locality": "abc123",
  "name": "abc123",
  "postalCode": "xyz789",
  "region": "abc123",
  "reportSettings": CompanyReportSettings,
  "stampCodes": ["xyz789"],
  "streetName": "xyz789",
  "users": [User]
}

CompanyArtworkMetadata

Fields
Field Name Description
attachReport - Boolean
caption - String
fileName - String!
height - Int
id - String!
mimeType - String!
previewUrl - String
size - Int!
url - String
usage - CompanyFileUsage!
width - Int
Example
{
  "attachReport": true,
  "caption": "xyz789",
  "fileName": "xyz789",
  "height": 123,
  "id": "abc123",
  "mimeType": "abc123",
  "previewUrl": "abc123",
  "size": 987,
  "url": "abc123",
  "usage": "operator_image",
  "width": 987
}

CompanyFileUsage

Description

The intended use of the file

Values
Enum Value Description

operator_image

report_footer_image

report_header_image

Example
"operator_image"

CompanyReportSettings

Fields
Field Name Description
fontFamily - FontFamily
footerImageMargin - Int
footerImageRepetition - HeaderFooterRepetition
footerText - String
footerTextMargin - Int
footerTextRepetition - HeaderFooterRepetition
headerImageMargin - Int
headerImageRepetition - HeaderFooterRepetition
pageNumberPosition - PageNumberPosition
pageNumberRepetition - PageNumberRepetition
Example
{
  "fontFamily": "arial",
  "footerImageMargin": 987,
  "footerImageRepetition": "all",
  "footerText": "abc123",
  "footerTextMargin": 987,
  "footerTextRepetition": "all",
  "headerImageMargin": 987,
  "headerImageRepetition": "all",
  "pageNumberPosition": "center",
  "pageNumberRepetition": "all"
}

CompanySource

Description

The source of the Company information

Values
Enum Value Description

duns

manual

Example
"duns"

Condition

Fields
Field Name Description
from - DateTime The Date from when the condition is valid
id - String!
roles - [PermissionRoleCondition!]
to - DateTime The Date until when the condition is valid
Example
{
  "from": "2007-12-03T10:15:30Z",
  "id": "xyz789",
  "roles": ["collaborator"],
  "to": "2007-12-03T10:15:30Z"
}

Constraint

Fields
Field Name Description
field - ConstraintField!
type - ConstraintType!
value - ConstraintValue!
Example
{
  "field": "AIRCRAFT_CYCLES",
  "type": "MAX_DATE",
  "value": ConstraintValue
}

ConstraintField

Description

The field to which the Constraint applies

Values
Enum Value Description

AIRCRAFT_CYCLES

AIRCRAFT_DAMAGED_PART_DESCRIPTION

AIRCRAFT_DAMAGED_PART_MANUFACTURER

AIRCRAFT_DAMAGED_PART_PART_NUMBER

AIRCRAFT_GFORCE_LANDING

AIRCRAFT_GO_AROUNDS

AIRCRAFT_HOURS

AIRCRAFT_LANDING_WEIGHT

AIRCRAFT_POWERPLANT_YEAR_OF_MANUFACTURE

AIRCRAFT_SERIAL_NUMBER

AIRCRAFT_TAKEOFF_WEIGHT

COMPANY_ADDRESS_LINE

COMPANY_COUNTY

COMPANY_IMAGE_UPLOAD

COMPANY_LOCALITY

COMPANY_NAME

COMPANY_POSTAL_CODE

COMPANY_REGION

COMPANY_STAMP_CODE

COMPANY_STREET_NAME

CREW_COUNT

CREW_MEMBER_EXPERIENCE_TOTAL_CYCLES

CREW_MEMBER_EXPERIENCE_TOTAL_HOURS

CREW_MEMBER_LICENCE

CREW_MEMBER_WORKLOAD_CHECK

CREW_MEMBER_WORKLOAD_CYCLES_LAST_7D

CREW_MEMBER_WORKLOAD_CYCLES_LAST_24H

CREW_MEMBER_WORKLOAD_CYCLES_LAST_30D

CREW_MEMBER_WORKLOAD_HOURS_LAST_7D

CREW_MEMBER_WORKLOAD_HOURS_LAST_24H

CREW_MEMBER_WORKLOAD_HOURS_LAST_30D

DATE_OF_BIRTH

DOCUMENT_UPLOAD

FAMILY_NAME

FIRST_NAME

FLIGHT_DATE

FLIGHT_IATA_CODE

FLIGHT_ICAO_CODE

IMAGE_CAPTION

IMAGE_UPLOAD

LABEL

LOSS_DATE

MAINTENANCE_CHECK_DATE

PASSENGERS_COUNT

PAYMENT_DATE

POLICY_LINE_SIZE

POLICY_MARKET_STAMP_CODE

POLICY_POLICY_NUMBER

POLICY_WARRANTY_POLICY_DESCRIPTION

REFERENCE

REFERENCE_DESCRIPTION

REPORT_DATE

ROLE_DESCRIPTION

ROLE_NAME

ZONE_DESCRIPTION

ZONE_NAME

Example
"AIRCRAFT_CYCLES"

ConstraintPairValue

Fields
Field Name Description
key - String!
value - String!
Example
{
  "key": "xyz789",
  "value": "abc123"
}

ConstraintType

Description

The type of Constraint

Values
Enum Value Description

MAX_DATE

MAX_LENGTH

MAX_VALUE

MIME_TYPE

MIN_DATE

MIN_LENGTH

MIN_VALUE

Example
"MAX_DATE"

ConstraintValue

Fields
Field Name Description
date - DateTime (Optional) The date value of the constraint
numeric - Decimal (Optional) The numeric value of the constraint
pairs - [ConstraintPairValue!] (Optional) The value pairs of the constraint
Example
{
  "date": "2007-12-03T10:15:30Z",
  "numeric": Decimal,
  "pairs": [ConstraintPairValue]
}

Continent

Fields
Field Name Description
id - ContinentId!
name - String!
Example
{"id": "af", "name": "abc123"}

ContinentId

Description

The id of the continent

Values
Enum Value Description

af

an

as

eu

na

oc

sa

Example
"af"

ConvertAdjustmentFlightManualInput

Fields
Input Field Description
flightId - String!
id - String!
Example
{
  "flightId": "xyz789",
  "id": "abc123"
}

ConvertLossNoticeFlightManualInput

Fields
Input Field Description
flightId - String!
id - String!
Example
{
  "flightId": "xyz789",
  "id": "abc123"
}

CostExpenseCoverage

Values
Enum Value Description

bail_guarantee

crisis_management

diversion

environmental_cleanup

family_assistance

medical

other

public_inquiry

repossession

runway_foaming

search_rescue

wreckage_removal

Example
"bail_guarantee"

Country

Fields
Field Name Description
code - Int!
continent - Continent!
iso2 - String!
iso3 - String!
name - String!
Example
{
  "code": 987,
  "continent": Continent,
  "iso2": "abc123",
  "iso3": "abc123",
  "name": "xyz789"
}

CreateAdjustmentInput

Fields
Input Field Description
categories - [LossCategory!]! The categories of Loss for the Adjustment
cls - ClassOfBusiness The Class of Business for the Adjustment. Default = aviation
lossDate - DateTime! The date of Loss
lossNoticeId - String The id of the LossNotice (FNOL) resulting in this Adjustment. Default = null
operationId - String! The id of the Operation associated with the Loss
reportDate - DateTime (Optional) The date the Loss was first reported. Default = null
reportingCurrency - String The currency in which the Adjustment figures should be reported. Default = "USD"
zoneId - String! The id of the Zone in which the adjustment is to be created
Example
{
  "categories": ["aircraft_hull"],
  "cls": "aviation",
  "lossDate": "2007-12-03T10:15:30Z",
  "lossNoticeId": "xyz789",
  "operationId": "xyz789",
  "reportDate": "2007-12-03T10:15:30Z",
  "reportingCurrency": "abc123",
  "zoneId": "abc123"
}

CreateCompanyInput

Fields
Input Field Description
addressLine1 - String
addressLine2 - String
countryCode - String!
county - String
locality - String
name - String!
postalCode - String
region - String
streetName - String
Example
{
  "addressLine1": "xyz789",
  "addressLine2": "abc123",
  "countryCode": "abc123",
  "county": "abc123",
  "locality": "xyz789",
  "name": "xyz789",
  "postalCode": "abc123",
  "region": "xyz789",
  "streetName": "xyz789"
}

CreateLossNoticeInput

Fields
Input Field Description
categories - [LossCategory!]!
cls - ClassOfBusiness!
lossDate - DateTime!
operationId - String!
reportDate - DateTime
zoneId - String!
Example
{
  "categories": ["aircraft_hull"],
  "cls": "aviation",
  "lossDate": "2007-12-03T10:15:30Z",
  "operationId": "abc123",
  "reportDate": "2007-12-03T10:15:30Z",
  "zoneId": "xyz789"
}

CreatePolicyInput

Fields
Input Field Description
cls - ClassOfBusiness (Optional) The Class of Business for the Policy. Default = aviation
endDate - DateTime! The end date of the Policy
policyNumber - String! The Policy number. The length should be between 4 and 32 characters
policyholderId - String! The id of the Policyholder Company/Organisation
primaryBrokerId - String! The id of the primary Broker Company/Organisation
secondaryBrokerId - String (Optional) The id of the secondary Broker Company/Organisation. Default = null
startDate - DateTime! The start date of the Policy
zoneId - String! The id of the Zone where the Policy is to be created
Example
{
  "cls": "aviation",
  "endDate": "2007-12-03T10:15:30Z",
  "policyNumber": "abc123",
  "policyholderId": "abc123",
  "primaryBrokerId": "abc123",
  "secondaryBrokerId": "abc123",
  "startDate": "2007-12-03T10:15:30Z",
  "zoneId": "xyz789"
}

CreateRoleInput

Fields
Input Field Description
description - String (Optional) The description for the Zone. The length should be at most 512 characters. Default = null
groupId - String (Optional) The id of the Group the Role is associated with. Default = null
name - String! The name of the Role. The length should be between 5 and 64 characters
scope - RoleScope! The Scope of the Role
zoneId - String The id of the Zone the Role is associated with. This should be specified if the Scope is set to RoleScope.Zone, and omitted otherwise. Default = null
Example
{
  "description": "abc123",
  "groupId": "abc123",
  "name": "abc123",
  "scope": "global",
  "zoneId": "abc123"
}

CreateRolePermissionInput

Fields
Input Field Description
actions - [PermissionAction!]! The Actions the Permission allows
id - String! The id of the Role
resource - PermissionResource! The Resource the permission applies to
Example
{
  "actions": ["create"],
  "id": "xyz789",
  "resource": "adjustment"
}

CreateStakeholderInput

Fields
Input Field Description
companyId - String! The id of the Company/Organisation
roles - [StakeholderRole!]! The Roles the Stakeholder may assume in the Zone
zoneId - String! The id of the Zone
Example
{
  "companyId": "xyz789",
  "roles": ["broker"],
  "zoneId": "abc123"
}

CreateZoneInput

Fields
Input Field Description
description - String (Optional) The description for the Zone. The length should be at most 512 characters. Default = null
name - String! The name of the Zone. The length should be between 5 and 64 characters
parentId - String (Optional) The id of the parent Zone. Default = null
Example
{
  "description": "abc123",
  "name": "abc123",
  "parentId": "abc123"
}

DamageExtent

Description

The extent of damage

Values
Enum Value Description

destroyed

minor

substantial

unknown

Example
"destroyed"

DateTime

Description

A date-time string at UTC, such as 2019-12-03T09:54:33Z, compliant with the date-time format.

Example
"2007-12-03T10:15:30Z"

Decimal

Description

An arbitrary-precision Decimal type

Example
Decimal

DeleteCompanyImageInput

Fields
Input Field Description
companyId - String!
id - String!
Example
{
  "companyId": "abc123",
  "id": "xyz789"
}

DeleteCompanyInput

Fields
Input Field Description
id - String!
Example
{"id": "abc123"}

DeleteRoleInput

Fields
Input Field Description
id - String! The id of the Role
Example
{"id": "abc123"}

DeleteRolePermissionConditionInput

Fields
Input Field Description
id - String! The id of the Role
permissionId - String! The id of the Permission
Example
{
  "id": "xyz789",
  "permissionId": "abc123"
}

DeleteRolePermissionInput

Fields
Input Field Description
id - String! The id of the Role
permissionId - String! The id of the Permission
Example
{
  "id": "xyz789",
  "permissionId": "abc123"
}

DeleteStakeholderInput

Fields
Input Field Description
id - String! The id of the Stakeholder
Example
{"id": "xyz789"}

DeleteZoneInput

Fields
Input Field Description
id - String! The id of the Zone
Example
{"id": "xyz789"}

Denomination

Fields
Field Name Description
currency - String!
value - Decimal!
Example
{
  "currency": "xyz789",
  "value": Decimal
}

DenominationInput

Fields
Input Field Description
currency - String!
value - Decimal!
Example
{
  "currency": "xyz789",
  "value": Decimal
}

DisableRoleInput

Fields
Input Field Description
id - String! The id of the Role
Example
{"id": "abc123"}

DisableRolePermissionInput

Fields
Input Field Description
id - String! The id of the Role
permissionId - String! The id of the Permission
Example
{
  "id": "abc123",
  "permissionId": "xyz789"
}

DunsApiAddress

Fields
Field Name Description
addressLine1 - String
addressLine2 - String
country - Country
county - String
locality - String
postalCode - String
region - String
streetName - String
Example
{
  "addressLine1": "abc123",
  "addressLine2": "xyz789",
  "country": Country,
  "county": "xyz789",
  "locality": "xyz789",
  "postalCode": "xyz789",
  "region": "xyz789",
  "streetName": "xyz789"
}

DunsApiBasicCompany

Fields
Field Name Description
dunsNumber - String!
primaryAddress - DunsApiAddress
primaryName - String!
Example
{
  "dunsNumber": "abc123",
  "primaryAddress": DunsApiAddress,
  "primaryName": "xyz789"
}

DunsApiBusinessEntityType

Fields
Field Name Description
code - Float!
description - String!
Example
{"code": 123.45, "description": "abc123"}

DunsApiCompany

Fields
Field Name Description
businessEntityType - DunsApiBusinessEntityType
domain - String
dunsNumber - String!
formerPrimaryNames - [String!]!
headQuarters - DunsApiBasicCompany
industryCodes - [DunsApiIndustryCode!]!
parent - DunsApiBasicCompany
primaryAddress - DunsApiAddress
primaryIndustryCodes - [DunsApiPrimaryIndustryCode!]!
primaryName - String!
registeredAddress - DunsApiAddress
registrationNumbers - [DunsApiRegistrationNumber!]!
tradeStyleNames - [String!]!
ultimate - DunsApiBasicCompany
Example
{
  "businessEntityType": DunsApiBusinessEntityType,
  "domain": "xyz789",
  "dunsNumber": "xyz789",
  "formerPrimaryNames": ["xyz789"],
  "headQuarters": DunsApiBasicCompany,
  "industryCodes": [DunsApiIndustryCode],
  "parent": DunsApiBasicCompany,
  "primaryAddress": DunsApiAddress,
  "primaryIndustryCodes": [DunsApiPrimaryIndustryCode],
  "primaryName": "abc123",
  "registeredAddress": DunsApiAddress,
  "registrationNumbers": [DunsApiRegistrationNumber],
  "tradeStyleNames": ["xyz789"],
  "ultimate": DunsApiBasicCompany
}

DunsApiIndustryCode

Fields
Field Name Description
code - String!
description - String!
type - String!
Example
{
  "code": "xyz789",
  "description": "xyz789",
  "type": "xyz789"
}

DunsApiPrimaryIndustryCode

Fields
Field Name Description
code - String!
description - String!
Example
{
  "code": "xyz789",
  "description": "xyz789"
}

DunsApiRegistrationNumber

Fields
Field Name Description
code - Int!
description - String!
number - String!
Example
{
  "code": 987,
  "description": "xyz789",
  "number": "xyz789"
}

EnableRoleInput

Fields
Input Field Description
id - String! The id of the Role
Example
{"id": "abc123"}

EnableRolePermissionInput

Fields
Input Field Description
id - String! The id of the Role
permissionId - String! The id of the Permission
Example
{
  "id": "xyz789",
  "permissionId": "abc123"
}

EngineFamily

Fields
Field Name Description
id - Int!
label - String!
Example
{"id": 123, "label": "abc123"}

EngineMaintenanceCheck

Values
Enum Value Description

borescope_inspection

compressor_wash

ground_run

hot_section_inspection

non_destructive_testing

other

overhaul

repair

Example
"borescope_inspection"

EngineMaintenanceCheckLocation

Values
Enum Value Description

off_wing

on_wing

Example
"off_wing"

EngineManufacturer

Fields
Field Name Description
id - Int!
label - String!
Example
{"id": 123, "label": "xyz789"}

EngineMasterSeries

Fields
Field Name Description
id - Int!
label - String!
Example
{"id": 123, "label": "abc123"}

EngineModel

Fields
Field Name Description
id - Int!
label - String!
Example
{"id": 987, "label": "xyz789"}

EngineSeries

Fields
Field Name Description
id - Int!
label - String!
Example
{"id": 987, "label": "abc123"}

ExchangeRate

Fields
Field Name Description
base - String!
currency - String!
factor - Float!
Example
{
  "base": "xyz789",
  "currency": "xyz789",
  "factor": 987.65
}

FeeAllocation

Values
Enum Value Description

correspondent

medical_investigation

nacha

services

Example
"correspondent"

FileMetadata

Fields
Field Name Description
attachReport - Boolean
caption - String
fileName - String!
height - Int
id - String!
mimeType - String!
narrative - JSONObject
previewUrl - String
size - Int!
url - String
width - Int
Example
{
  "attachReport": false,
  "caption": "abc123",
  "fileName": "xyz789",
  "height": 987,
  "id": "abc123",
  "mimeType": "abc123",
  "narrative": {},
  "previewUrl": "abc123",
  "size": 123,
  "url": "abc123",
  "width": 123
}

Flight

Fields
Field Name Description
airCarrier - AirCarrier!
airframe - Airframe!
departure - FlightAerodrome!
destination - FlightAerodrome!
diversion - FlightAerodrome
flightNumbers - FlightNumbers!
id - String!
status - FlightStatus!
Example
{
  "airCarrier": AirCarrier,
  "airframe": Airframe,
  "departure": FlightAerodrome,
  "destination": FlightAerodrome,
  "diversion": FlightAerodrome,
  "flightNumbers": FlightNumbers,
  "id": "abc123",
  "status": "cancelled"
}

FlightAerodrome

Fields
Field Name Description
actualArrival - DateTime
actualDeparture - DateTime
actualLanding - DateTime
actualTakeoff - DateTime
aerodrome - Aerodrome!
estimated - DateTime
gate - String
runway - Runway
scheduled - DateTime
terminal - String
Example
{
  "actualArrival": "2007-12-03T10:15:30Z",
  "actualDeparture": "2007-12-03T10:15:30Z",
  "actualLanding": "2007-12-03T10:15:30Z",
  "actualTakeoff": "2007-12-03T10:15:30Z",
  "aerodrome": Aerodrome,
  "estimated": "2007-12-03T10:15:30Z",
  "gate": "xyz789",
  "runway": Runway,
  "scheduled": "2007-12-03T10:15:30Z",
  "terminal": "xyz789"
}

FlightCrewRole

Values
Enum Value Description

pilot_flying

pilot_monitoring

relief_first_officer

unknown

Example
"pilot_flying"

FlightNumbers

Fields
Field Name Description
codeShares - [String!]!
iata - String
icao - String
Example
{
  "codeShares": ["xyz789"],
  "iata": "xyz789",
  "icao": "abc123"
}

FlightOutcome

Values
Enum Value Description

cfit

ditching

event_on_landing

other

uneventful_landing

Example
"cfit"

FlightPhase

Values
Enum Value Description

approach_approach

enroute_climb

enroute_cruise

enroute_descent

landing_goaround

landing_landing

landing_roll_out

postflight_arrival_engine_shutdown

postflight_ground_activities

postflight_postflight

postflight_taxi_in

preflight_engine_start_depart

preflight_loading

preflight_planning

preflight_preflight

preflight_taxi_out

takeoff_climb

takeoff_takeoff

Example
"approach_approach"

FlightSource

Description

The source of the flight

Values
Enum Value Description

api

manual

Example
"api"

FlightStatus

Description

The flight status

Values
Enum Value Description

cancelled

diverted

in_flight

landed

on_ground

scheduled

unknown

Example
"cancelled"

FlightType

Values
Enum Value Description

commercial_charter_adhoc

commercial_charter_cargo

commercial_charter_passenger

commercial_scheduled_cargo

commercial_scheduled_passenger

commercial_scheduled_passenger_cargo

non_revenue_certification

non_revenue_delivery

non_revenue_ferry

non_revenue_maintenance

non_revenue_test_flight

non_revenue_training

not_applicable

other

Example
"commercial_charter_adhoc"

Float

Description

The Float scalar type represents signed double-precision fractional values as specified by IEEE 754.

Example
987.65

FontFamily

Description

Custom Font Family

Values
Enum Value Description

arial

calibri

eb_garamond

inter

merriweather

Example
"arial"

Group

Fields
Field Name Description
displayName - String!
id - String!
provider - String!
Example
{
  "displayName": "abc123",
  "id": "abc123",
  "provider": "abc123"
}

HeaderFooterRepetition

Description

Header/Footer repetition settings

Values
Enum Value Description

all

first

Example
"all"

IdentityProviderStrategy

Description

IdP strategy

Values
Enum Value Description

LOCAL

SAML

Example
"LOCAL"

IndemnityAllocation

Values
Enum Value Description

advance_payment

agreed_settlement

compensation

damage_assessment

estimate

ferry_flight

goodwill

labour

parts_components

precautionary

punitive_damages

storage_hangarage

sum_insured

Example
"advance_payment"

IndemnityCategory

Values
Enum Value Description

aircraft_hull

baggage_personal_effects

bodily_injury

ground_handling_and_support_equipment

spares_and_aircraft_equipment

Example
"aircraft_hull"

IndemnityCoverage

Values
Enum Value Description

aircraft_hull

baggage_personal_effects

bodily_injury

buyer_furnished_equipment

cost_of_working

flight_spares_kits

ground_handling_and_support_equipment

hull_total_loss

inflight_entertainment_system

loss_of_use

premium_insurance

residual_value

spares_and_aircraft_equipment

third_party

Example
"aircraft_hull"

IndividualSex

Description

The sex of the Individual

Values
Enum Value Description

female

male

Example
"female"

Int

Description

The Int scalar type represents non-fractional signed whole numeric values. Int can represent values between -(2^31) and 2^31 - 1.

Example
987

JSONObject

Description

The JSONObject scalar type represents JSON objects as specified by ECMA-404.

Example
{}

LabelType

Description

The type of Label

Values
Enum Value Description

auto

custom

Example
"auto"

LeaseStatus

Description

The lease status

Values
Enum Value Description

leased

not_leased

Example
"leased"

Location

Fields
Field Name Description
address - LocationAddressLocality
aerodrome - Aerodrome
coordinates - LocationCoordinates
id - String!
locality - LocationAddressLocality
specificity - LocationSpecificity!
Example
{
  "address": LocationAddressLocality,
  "aerodrome": Aerodrome,
  "coordinates": LocationCoordinates,
  "id": "xyz789",
  "locality": LocationAddressLocality,
  "specificity": "address"
}

LocationAddressLocality

Fields
Field Name Description
address - String
country - Country!
display - String!
district - String
locality - String
neighbourhood - String
place - String
postalCode - String
regionCode - String
Example
{
  "address": "xyz789",
  "country": Country,
  "display": "abc123",
  "district": "abc123",
  "locality": "xyz789",
  "neighbourhood": "xyz789",
  "place": "abc123",
  "postalCode": "abc123",
  "regionCode": "xyz789"
}

LocationAddressLocalityInput

Fields
Input Field Description
address - String
countryCode - String!
display - String!
district - String
locality - String
neighbourhood - String
place - String
postalCode - String
regionCode - String
Example
{
  "address": "xyz789",
  "countryCode": "abc123",
  "display": "xyz789",
  "district": "abc123",
  "locality": "abc123",
  "neighbourhood": "abc123",
  "place": "xyz789",
  "postalCode": "xyz789",
  "regionCode": "abc123"
}

LocationCoordinates

Fields
Field Name Description
latitude - Decimal!
longitude - Decimal!
Example
{
  "latitude": Decimal,
  "longitude": Decimal
}

LocationSpecificity

Description

The specificity of thelocaction

Values
Enum Value Description

address

aerodrome

coordinates

locality

unknown

Example
"address"

LossCategory

Description

A category of loss

Values
Enum Value Description

aircraft_hull

baggage_personal_effects

bodily_injury

cargo_in_transit

cargo_mail

ground_handling_and_support_equipment

loss_of_license

non_aviation

personal_accident

personal_injury

property

spares_and_aircraft_equipment

Example
"aircraft_hull"

LossNotice

Fields
Field Name Description
actions - [PermissionAction!]!
airframes - [LossNoticeAirframe!]!
categories - [LossCategory!]!
creationDate - DateTime!
documents - [FileMetadata!]!
flights - [LossNoticeFlight!]!
id - String!
images - [FileMetadata!]!
labels - [LossNoticeLabel!]!
lastUpdateDate - DateTime!
lossDate - DateTime!
lossLocation - Location!
narrative - JSONObject
operation - Actor!
reportDate - DateTime!
reporter - Actor!
status - LossNoticeStatus!
zone - Zone!
Example
{
  "actions": ["create"],
  "airframes": [LossNoticeAirframe],
  "categories": ["aircraft_hull"],
  "creationDate": "2007-12-03T10:15:30Z",
  "documents": [FileMetadata],
  "flights": [LossNoticeFlight],
  "id": "xyz789",
  "images": [FileMetadata],
  "labels": [LossNoticeLabel],
  "lastUpdateDate": "2007-12-03T10:15:30Z",
  "lossDate": "2007-12-03T10:15:30Z",
  "lossLocation": Location,
  "narrative": {},
  "operation": Actor,
  "reportDate": "2007-12-03T10:15:30Z",
  "reporter": Actor,
  "status": "draft",
  "zone": Zone
}

LossNoticeAirframe

Fields
Field Name Description
airframe - Airframe!
creationDate - DateTime!
documents - [FileMetadata!]!
engines - [LossNoticeAirframeEngine!]!
flightId - String
id - String!
lastUpdateDate - DateTime!
partsDamaged - [LossNoticeAirframePartDamage!]!
workload - LossNoticeAirframeWorkload
Example
{
  "airframe": Airframe,
  "creationDate": "2007-12-03T10:15:30Z",
  "documents": [FileMetadata],
  "engines": [LossNoticeAirframeEngine],
  "flightId": "xyz789",
  "id": "xyz789",
  "lastUpdateDate": "2007-12-03T10:15:30Z",
  "partsDamaged": [LossNoticeAirframePartDamage],
  "workload": LossNoticeAirframeWorkload
}

LossNoticeAirframeEngine

Fields
Field Name Description
damage - [LossNoticeAirframeEngineDamage!]!
documents - [FileMetadata!]!
id - String!
images - [FileMetadata!]!
lease - LeaseStatus! The lease status of the Engine
manufacturer - EngineManufacturer!
model - EngineModel!
position - AirframeEnginePosition!
serialNumber - String
workload - LossNoticeAirframeEngineWorkload
yearOfManufacture - Int
Example
{
  "damage": [LossNoticeAirframeEngineDamage],
  "documents": [FileMetadata],
  "id": "xyz789",
  "images": [FileMetadata],
  "lease": "leased",
  "manufacturer": EngineManufacturer,
  "model": EngineModel,
  "position": "apu",
  "serialNumber": "abc123",
  "workload": LossNoticeAirframeEngineWorkload,
  "yearOfManufacture": 123
}

LossNoticeAirframeEngineDamage

Fields
Field Name Description
components - [AirframeEngineComponent!]!
extent - DamageExtent!
id - String!
narrative - JSONObject
Example
{
  "components": ["carburettor"],
  "extent": "destroyed",
  "id": "abc123",
  "narrative": {}
}

LossNoticeAirframeEngineWorkload

Fields
Field Name Description
cyclesSinceNew - Int
hoursSinceNew - Int
Example
{"cyclesSinceNew": 123, "hoursSinceNew": 987}

LossNoticeAirframePartDamage

Fields
Field Name Description
components - [AirframeSystemComponent!]!
description - String
documents - [FileMetadata!]!
extent - DamageExtent!
id - String!
images - [FileMetadata!]!
manufacturer - String
narrative - JSONObject
partModelNumber - String
serialNumber - String
Example
{
  "components": ["auxiliary_power_apu_bleed_valve"],
  "description": "abc123",
  "documents": [FileMetadata],
  "extent": "destroyed",
  "id": "xyz789",
  "images": [FileMetadata],
  "manufacturer": "abc123",
  "narrative": {},
  "partModelNumber": "abc123",
  "serialNumber": "abc123"
}

LossNoticeAirframeWorkload

Fields
Field Name Description
cyclesSinceNew - Int
hoursSinceNew - Int
Example
{"cyclesSinceNew": 987, "hoursSinceNew": 123}

LossNoticeDateFilter

Fields
Input Field Description
end - DateTime
start - DateTime
Example
{
  "end": "2007-12-03T10:15:30Z",
  "start": "2007-12-03T10:15:30Z"
}

LossNoticeFlight

Fields
Field Name Description
airframeId - String
creationDate - DateTime!
flight - Flight!
id - String!
lastUpdateDate - DateTime!
source - FlightSource!
Example
{
  "airframeId": "xyz789",
  "creationDate": "2007-12-03T10:15:30Z",
  "flight": Flight,
  "id": "xyz789",
  "lastUpdateDate": "2007-12-03T10:15:30Z",
  "source": "api"
}

LossNoticeLabel

Fields
Field Name Description
id - String! The id of the Label
label - String! The Label applied to the LossNotice
type - LabelType! The type of Label
Example
{
  "id": "xyz789",
  "label": "abc123",
  "type": "auto"
}

LossNoticeQueryFilters

Fields
Input Field Description
categories - [LossCategory!]
creationDate - LossNoticeDateFilter
label - [String!]
lastUpdateDate - LossNoticeDateFilter
lossDate - LossNoticeDateFilter
operation - [String!]
reportDate - LossNoticeDateFilter
reporter - [String!]
status - [LossNoticeStatus!]
zoneId - String
Example
{
  "categories": ["aircraft_hull"],
  "creationDate": LossNoticeDateFilter,
  "label": ["xyz789"],
  "lastUpdateDate": LossNoticeDateFilter,
  "lossDate": LossNoticeDateFilter,
  "operation": ["abc123"],
  "reportDate": LossNoticeDateFilter,
  "reporter": ["abc123"],
  "status": ["draft"],
  "zoneId": "xyz789"
}

LossNoticeQuerySortField

Description

The field to be used to sort the adjustments

Values
Enum Value Description

creationDate

lastUpdateDate

lossDate

reportDate

Example
"creationDate"

LossNoticeQuerySortOrder

Description

The sort order for the loss notices

Values
Enum Value Description

ascending

descending

Example
"ascending"

LossNoticeQuerySorting

Fields
Input Field Description
field - LossNoticeQuerySortField!
order - LossNoticeQuerySortOrder
Example
{"field": "creationDate", "order": "ascending"}

LossNoticeStatus

Description

The current state of the loss notice

Values
Enum Value Description

draft

duplicate

historic

open

Example
"draft"

MaintenanceCheckReason

Values
Enum Value Description

non_routine

routine

Example
"non_routine"

MarketReference

Fields
Field Name Description
id - String! The id of the Market Reference
reference - String! The Market reference
type - MarketReferenceType!
Example
{
  "id": "abc123",
  "reference": "xyz789",
  "type": "claim"
}

MarketReferenceType

Description

The type of market reference

Values
Enum Value Description

claim

policy

Example
"claim"

OffsetPaginatedAdjustmentCompanies

Fields
Field Name Description
count - Int! The number of items returned for the current page
data - [AdjustmentCompany!] The data returned for the current page
page - Int! The current page number
totalCount - Int! The total number of items available
totalPages - Int! The total number of pages available
Example
{
  "count": 987,
  "data": [AdjustmentCompany],
  "page": 987,
  "totalCount": 987,
  "totalPages": 123
}

OffsetPaginatedAdjustmentCostExpensePayments

Fields
Field Name Description
count - Int! The number of items returned for the current page
data - [AdjustmentCostExpensePayment!] The data returned for the current page
page - Int! The current page number
totalCount - Int! The total number of items available
totalPages - Int! The total number of pages available
Example
{
  "count": 987,
  "data": [AdjustmentCostExpensePayment],
  "page": 987,
  "totalCount": 123,
  "totalPages": 123
}

OffsetPaginatedAdjustmentCostExpenseReserves

Fields
Field Name Description
count - Int! The number of items returned for the current page
data - [AdjustmentCostExpenseReserve!] The data returned for the current page
page - Int! The current page number
totalCount - Int! The total number of items available
totalPages - Int! The total number of pages available
Example
{
  "count": 987,
  "data": [AdjustmentCostExpenseReserve],
  "page": 987,
  "totalCount": 987,
  "totalPages": 123
}

OffsetPaginatedAdjustmentFeePayments

Fields
Field Name Description
count - Int! The number of items returned for the current page
data - [AdjustmentFeePayment!] The data returned for the current page
page - Int! The current page number
totalCount - Int! The total number of items available
totalPages - Int! The total number of pages available
Example
{
  "count": 123,
  "data": [AdjustmentFeePayment],
  "page": 987,
  "totalCount": 123,
  "totalPages": 987
}

OffsetPaginatedAdjustmentFeeReserves

Fields
Field Name Description
count - Int! The number of items returned for the current page
data - [AdjustmentFeeReserve!] The data returned for the current page
page - Int! The current page number
totalCount - Int! The total number of items available
totalPages - Int! The total number of pages available
Example
{
  "count": 123,
  "data": [AdjustmentFeeReserve],
  "page": 123,
  "totalCount": 987,
  "totalPages": 123
}

OffsetPaginatedAdjustmentIndemnityPayments

Fields
Field Name Description
count - Int! The number of items returned for the current page
data - [AdjustmentIndemnityPayment!] The data returned for the current page
page - Int! The current page number
totalCount - Int! The total number of items available
totalPages - Int! The total number of pages available
Example
{
  "count": 987,
  "data": [AdjustmentIndemnityPayment],
  "page": 987,
  "totalCount": 987,
  "totalPages": 123
}

OffsetPaginatedAdjustmentIndemnityReserves

Fields
Field Name Description
count - Int! The number of items returned for the current page
data - [AdjustmentIndemnityReserve!] The data returned for the current page
page - Int! The current page number
totalCount - Int! The total number of items available
totalPages - Int! The total number of pages available
Example
{
  "count": 987,
  "data": [AdjustmentIndemnityReserve],
  "page": 123,
  "totalCount": 123,
  "totalPages": 987
}

OffsetPaginatedAdjustmentIndividuals

Fields
Field Name Description
count - Int! The number of items returned for the current page
data - [AdjustmentIndividual!] The data returned for the current page
page - Int! The current page number
totalCount - Int! The total number of items available
totalPages - Int! The total number of pages available
Example
{
  "count": 987,
  "data": [AdjustmentIndividual],
  "page": 987,
  "totalCount": 987,
  "totalPages": 123
}

OffsetPaginatedAdjustments

Fields
Field Name Description
count - Int! The number of items returned for the current page
data - [Adjustment!] The data returned for the current page
page - Int! The current page number
totalCount - Int! The total number of items available
totalPages - Int! The total number of pages available
Example
{
  "count": 123,
  "data": [Adjustment],
  "page": 987,
  "totalCount": 987,
  "totalPages": 123
}

OffsetPaginatedCompanies

Fields
Field Name Description
count - Int! The number of items returned for the current page
data - [Company!] The data returned for the current page
page - Int! The current page number
totalCount - Int! The total number of items available
totalPages - Int! The total number of pages available
Example
{
  "count": 987,
  "data": [Company],
  "page": 123,
  "totalCount": 987,
  "totalPages": 987
}

OffsetPaginatedGroups

Fields
Field Name Description
count - Int! The number of items returned for the current page
data - [Group!] The data returned for the current page
page - Int! The current page number
totalCount - Int! The total number of items available
totalPages - Int! The total number of pages available
Example
{
  "count": 987,
  "data": [Group],
  "page": 123,
  "totalCount": 123,
  "totalPages": 123
}

OffsetPaginatedLossNotices

Fields
Field Name Description
count - Int! The number of items returned for the current page
data - [LossNotice!] The data returned for the current page
page - Int! The current page number
totalCount - Int! The total number of items available
totalPages - Int! The total number of pages available
Example
{
  "count": 987,
  "data": [LossNotice],
  "page": 987,
  "totalCount": 987,
  "totalPages": 123
}

OffsetPaginatedPolicies

Fields
Field Name Description
count - Int! The number of items returned for the current page
data - [Policy!] The data returned for the current page
page - Int! The current page number
totalCount - Int! The total number of items available
totalPages - Int! The total number of pages available
Example
{
  "count": 123,
  "data": [Policy],
  "page": 123,
  "totalCount": 123,
  "totalPages": 123
}

OffsetPaginatedUsers

Fields
Field Name Description
count - Int! The number of items returned for the current page
data - [User!] The data returned for the current page
page - Int! The current page number
totalCount - Int! The total number of items available
totalPages - Int! The total number of pages available
Example
{
  "count": 123,
  "data": [User],
  "page": 987,
  "totalCount": 987,
  "totalPages": 123
}

PageNumberPosition

Description

Page Number Position

Values
Enum Value Description

center

left

right

Example
"center"

PageNumberRepetition

Description

Page Number Repetition

Values
Enum Value Description

all

skip_first

Example
"all"

PaginatedDunsApiCompanies

Fields
Field Name Description
count - Int! The number of items returned for the current page
data - [DunsApiCompany!] The data returned for the current page
page - Int! The current page number
totalCount - Int! The total number of items available
totalPages - Int! The total number of pages available
Example
{
  "count": 123,
  "data": [DunsApiCompany],
  "page": 987,
  "totalCount": 123,
  "totalPages": 987
}

PaginatedFlights

Fields
Field Name Description
count - Int! The number of items returned for the current page
data - [Flight!] The data returned for the current page
page - Int! The current page number
totalCount - Int! The total number of items available
totalPages - Int! The total number of pages available
Example
{
  "count": 987,
  "data": [Flight],
  "page": 987,
  "totalCount": 123,
  "totalPages": 123
}

Permission

Fields
Field Name Description
actions - [PermissionAction!]! The Actions the Permission allows
conditions - Condition The Conditions that must be met for the Permission to be granted
enabled - Boolean! The enabled status of the Permission
id - String! The id of the Permission
resource - PermissionResource! The Resource the permission applies to
Example
{
  "actions": ["create"],
  "conditions": Condition,
  "enabled": true,
  "id": "abc123",
  "resource": "adjustment"
}

PermissionAction

Description

The actions allowed by the Permission

Values
Enum Value Description

create

delete

read

update

Example
"create"

PermissionResource

Description

The Resource the Permission applies to

Values
Enum Value Description

adjustment

adjustment_label

aviation_insights

company

financial_insights

group

lossnotice

policy

policy_label

role

stakeholder

user

zone

Example
"adjustment"

PermissionRoleCondition

Description

The role conditions associated with the Permission

Values
Enum Value Description

collaborator

creator

expert

owner

reporter

Example
"collaborator"

PhysicalDamage

Values
Enum Value Description

none

partial_loss

total_loss

undetermined

Example
"none"

PilotLicence

Values
Enum Value Description

atpl

cpl

ppl

unknown

Example
"atpl"

PilotMedicalFitness

Values
Enum Value Description

fit_to_fly

unfit_to_fly

unknown

Example
"fit_to_fly"

PilotRank

Values
Enum Value Description

cadet_trainee

captain

first_officer

unknown

Example
"cadet_trainee"

Policy

Fields
Field Name Description
cls - ClassOfBusiness!
creationDate - DateTime! The date the Policy was created
endDate - DateTime! The end date of the Policy
id - String! The id of the Policy
labels - [PolicyLabel!]!
lastUpdateDate - DateTime! The date the Policy was last updated
markets - [PolicyMarket!]!
namedInsured - [PolicyLegalEntity!]!
policyNumber - String! The Policynumber
policyholder - PolicyLegalEntity!
primaryBroker - PolicyLegalEntity!
secondaryBroker - PolicyLegalEntity
startDate - DateTime! The start date of the Policy
type - [PolicyType!]! The types of coverage for the Policy
zone - Zone!
Example
{
  "cls": "aviation",
  "creationDate": "2007-12-03T10:15:30Z",
  "endDate": "2007-12-03T10:15:30Z",
  "id": "abc123",
  "labels": [PolicyLabel],
  "lastUpdateDate": "2007-12-03T10:15:30Z",
  "markets": [PolicyMarket],
  "namedInsured": [PolicyLegalEntity],
  "policyNumber": "xyz789",
  "policyholder": PolicyLegalEntity,
  "primaryBroker": PolicyLegalEntity,
  "secondaryBroker": PolicyLegalEntity,
  "startDate": "2007-12-03T10:15:30Z",
  "type": ["aviation_contingent_hull_all_risk"],
  "zone": Zone
}

PolicyDateFilter

Fields
Input Field Description
end - DateTime
start - DateTime
Example
{
  "end": "2007-12-03T10:15:30Z",
  "start": "2007-12-03T10:15:30Z"
}

PolicyLabel

Fields
Field Name Description
id - String! The id of the Label
label - String! The Label applied to the Policy
Example
{
  "id": "abc123",
  "label": "abc123"
}

PolicyLegalEntity

Fields
Field Name Description
id - String! The id of the Policy LegalEntity
stakeholder - Stakeholder!
type - PolicyLegalEntityType! The type of the Policy LegalEntity
Example
{
  "id": "abc123",
  "stakeholder": Stakeholder,
  "type": "capacity"
}

PolicyLegalEntityType

Description

The type of Policy Legal Entity

Values
Enum Value Description

capacity

named_insured

primary

primary_broker

secondary_broker

Example
"capacity"

PolicyLineTag

Description

A tag attached to the Policy line

Values
Enum Value Description

claims_agreement_party

leader

Example
"claims_agreement_party"

PolicyMarket

Fields
Field Name Description
companyLines - [PolicyMarketCompanyLine!]!
id - String! The id of the Market
type - [PolicyType!]! The type of coverage for the Market
warrantyPolicies - [PolicyMarketWarrantyPolicy!]!
Example
{
  "companyLines": [PolicyMarketCompanyLine],
  "id": "xyz789",
  "type": ["aviation_contingent_hull_all_risk"],
  "warrantyPolicies": [PolicyMarketWarrantyPolicy]
}

PolicyMarketCompanyLine

Fields
Field Name Description
id - String! The id of the Line
insurer - PolicyLegalEntity!
lineSize - Decimal! The size of the Line
reference - String The Insurer's Reference for the Line
stampCode - String The stamp code of the Line
tags - [PolicyLineTag!]!
Example
{
  "id": "xyz789",
  "insurer": PolicyLegalEntity,
  "lineSize": Decimal,
  "reference": "xyz789",
  "stampCode": "xyz789",
  "tags": ["claims_agreement_party"]
}

PolicyMarketWarrantyPolicy

Fields
Field Name Description
companyLines - [PolicyMarketCompanyLine!]!
description - String! The Risk Framework/Warranty Policy Description
id - String! The id of the Risk Framework/Warranty Policy
reference - String! The Risk Framework/Warranty Policy Reference
Example
{
  "companyLines": [PolicyMarketCompanyLine],
  "description": "xyz789",
  "id": "abc123",
  "reference": "abc123"
}

PolicyQueryFilters

Fields
Input Field Description
endDate - PolicyDateFilter
label - [String!]
lastUpdateDate - PolicyDateFilter
policyNumber - [String!]
references - [String!]
startDate - PolicyDateFilter
zoneId - String
Example
{
  "endDate": PolicyDateFilter,
  "label": ["xyz789"],
  "lastUpdateDate": PolicyDateFilter,
  "policyNumber": ["abc123"],
  "references": ["xyz789"],
  "startDate": PolicyDateFilter,
  "zoneId": "abc123"
}

PolicyQuerySortField

Description

The field to be used to sort the Policies

Values
Enum Value Description

endDate

lastUpdateDate

reportDate

startDate

Example
"endDate"

PolicyQuerySortOrder

Description

The sort order for the policies

Values
Enum Value Description

ascending

descending

Example
"ascending"

PolicyQuerySorting

Fields
Input Field Description
field - PolicyQuerySortField!
order - PolicyQuerySortOrder
Example
{"field": "endDate", "order": "ascending"}

PolicyType

Description

The type of Policy

Values
Enum Value Description

aviation_contingent_hull_all_risk

aviation_contingent_liability

aviation_contingent_war_allied_perils

aviation_deductible

aviation_extended_coverage_war_liability

aviation_hull_all_risks

aviation_liability

aviation_loss_of_license

aviation_personal_accident

aviation_spares_all_risks

aviation_war_allied_perils

Example
"aviation_contingent_hull_all_risk"

ReferenceType

Description

The type of reference

Values
Enum Value Description

actor

market

Example
"actor"

RemoveAdjustmentAirframeCrewMemberExperienceInput

Fields
Input Field Description
crewMemberId - String! The id of the Crew Member
id - String! The id of the Adjustment
Example
{
  "crewMemberId": "xyz789",
  "id": "abc123"
}

RemoveAdjustmentAirframeCrewMemberFlightRoleInput

Fields
Input Field Description
crewMemberId - String! The id of the Crew Member
id - String! The id of the Adjustment
Example
{
  "crewMemberId": "xyz789",
  "id": "xyz789"
}

RemoveAdjustmentAirframeCrewMemberInput

Fields
Input Field Description
crewMemberId - String! The id of the Crew Member
id - String! The id of the Adjustment
Example
{
  "crewMemberId": "xyz789",
  "id": "abc123"
}

RemoveAdjustmentAirframeCrewMemberWorkloadInput

Fields
Input Field Description
crewMemberId - String! The id of the Crew Member
id - String! The id of the Adjustment
Example
{
  "crewMemberId": "abc123",
  "id": "xyz789"
}

RemoveAdjustmentAirframeEngineDamageInput

Fields
Input Field Description
damageId - String! The id of the Damage
id - String! The id of the Adjustment
Example
{
  "damageId": "xyz789",
  "id": "xyz789"
}

RemoveAdjustmentAirframeEngineInput

Fields
Input Field Description
engineId - String! The id of the Engine
id - String! The id of the Adjustment
Example
{
  "engineId": "xyz789",
  "id": "xyz789"
}

RemoveAdjustmentAirframeEngineMaintenanceCheckInput

Fields
Input Field Description
id - String! The id of the Adjustment
maintenanceCheckId - String! The id of the Maintenance/Check
Example
{
  "id": "xyz789",
  "maintenanceCheckId": "abc123"
}

RemoveAdjustmentAirframeInput

Fields
Input Field Description
airframeId - String! The id of the Airframe
id - String! The id of the Adjustment
Example
{
  "airframeId": "abc123",
  "id": "xyz789"
}

RemoveAdjustmentAirframeMaintenanceCheckInput

Fields
Input Field Description
id - String! The id of the Adjustment
maintenanceCheckId - String! The id of the Maintenance/Check
Example
{
  "id": "xyz789",
  "maintenanceCheckId": "abc123"
}

RemoveAdjustmentAirframePartDamageInput

Fields
Input Field Description
damageId - String! The id of the Damage
id - String! The id of the Adjustment
Example
{
  "damageId": "xyz789",
  "id": "abc123"
}

RemoveAdjustmentCollaboratorInput

Fields
Input Field Description
actorId - String! The id of the Collaborator
id - String! The id of the Adjustment
Example
{
  "actorId": "abc123",
  "id": "abc123"
}

RemoveAdjustmentCompanyInput

Fields
Input Field Description
companyId - String! The id of the Company/Organisation
id - String! The id of the Adjustment
Example
{
  "companyId": "abc123",
  "id": "abc123"
}

RemoveAdjustmentCostExpensePaymentInput

Fields
Input Field Description
id - String! The id of the Adjustment
paymentId - String! The id of the Payment/Disbursement
Example
{
  "id": "abc123",
  "paymentId": "xyz789"
}

RemoveAdjustmentCostExpenseReserveInput

Fields
Input Field Description
id - String! The id of the Adjustment
reserveId - String! The id of the Reserve
Example
{
  "id": "abc123",
  "reserveId": "xyz789"
}

RemoveAdjustmentDocumentsInput

Fields
Input Field Description
documentIds - [String!]! The ids of the Documents to remove
id - String! The id of the Adjustment
Example
{
  "documentIds": ["abc123"],
  "id": "xyz789"
}

RemoveAdjustmentFeePaymentInput

Fields
Input Field Description
id - String! The id of the Adjustment
paymentId - String! The id of the Payment/Disbursement
Example
{
  "id": "abc123",
  "paymentId": "abc123"
}

RemoveAdjustmentFeeReserveInput

Fields
Input Field Description
id - String! The id of the Adjustment
reserveId - String! The id of the Reserve
Example
{
  "id": "xyz789",
  "reserveId": "xyz789"
}

RemoveAdjustmentFlightDiversionInput

Fields
Input Field Description
flightId - String! The id of the Flight
id - String! The id of the Adjustment
Example
{
  "flightId": "abc123",
  "id": "abc123"
}

RemoveAdjustmentFlightInput

Fields
Input Field Description
flightId - String! The id of the Flight
id - String! The id of the Adjustment
Example
{
  "flightId": "abc123",
  "id": "abc123"
}

RemoveAdjustmentImagesInput

Fields
Input Field Description
id - String! The id of the Adjustment
imageIds - [String!]! The ids of the images to remove
Example
{
  "id": "xyz789",
  "imageIds": ["abc123"]
}

RemoveAdjustmentIndemnityPaymentInput

Fields
Input Field Description
id - String! The id of the Adjustment
paymentId - String! The id of the Payment/Disbursement
Example
{
  "id": "abc123",
  "paymentId": "abc123"
}

RemoveAdjustmentIndemnityReserveInput

Fields
Input Field Description
id - String! The id of the Adjustment
reserveId - String! The id of the Reserve
Example
{
  "id": "abc123",
  "reserveId": "abc123"
}

RemoveAdjustmentIndividualInput

Fields
Input Field Description
id - String! The id of the Adjustment
individualId - String! The id of the Individual
Example
{
  "id": "xyz789",
  "individualId": "abc123"
}

RemoveAdjustmentLabelInput

Fields
Input Field Description
id - String! The id of the Adjustment
labelId - String! The id of the Label
Example
{
  "id": "xyz789",
  "labelId": "xyz789"
}

RemoveAdjustmentPolicyInput

Fields
Input Field Description
id - String! The id of the Adjustment
policyId - String! The id of the Policy
Example
{
  "id": "xyz789",
  "policyId": "xyz789"
}

RemoveLossNoticeAirframeEngineDamageInput

Fields
Input Field Description
damageId - String!
id - String!
Example
{
  "damageId": "xyz789",
  "id": "abc123"
}

RemoveLossNoticeAirframeEngineInput

Fields
Input Field Description
engineId - String!
id - String!
Example
{
  "engineId": "xyz789",
  "id": "xyz789"
}

RemoveLossNoticeAirframeInput

Fields
Input Field Description
airframeId - String!
id - String!
Example
{
  "airframeId": "abc123",
  "id": "abc123"
}

RemoveLossNoticeAirframePartDamageInput

Fields
Input Field Description
damageId - String!
id - String!
Example
{
  "damageId": "xyz789",
  "id": "xyz789"
}

RemoveLossNoticeDocumentsInput

Fields
Input Field Description
documentIds - [String!]!
id - String!
Example
{
  "documentIds": ["xyz789"],
  "id": "xyz789"
}

RemoveLossNoticeFlightDiversionInput

Fields
Input Field Description
flightId - String!
id - String!
Example
{
  "flightId": "xyz789",
  "id": "xyz789"
}

RemoveLossNoticeFlightInput

Fields
Input Field Description
flightId - String!
id - String!
Example
{
  "flightId": "abc123",
  "id": "abc123"
}

RemoveLossNoticeImagesInput

Fields
Input Field Description
id - String!
imageIds - [String!]!
Example
{
  "id": "abc123",
  "imageIds": ["abc123"]
}

RemoveLossNoticeLabelInput

Fields
Input Field Description
id - String! The id of the LossNotice
labelId - String! The id of the Label
Example
{
  "id": "xyz789",
  "labelId": "xyz789"
}

RemoveMarketReferenceInput

Fields
Input Field Description
id - String! The id of the Adjustment
referenceId - String! The id of the Market Reference
Example
{
  "id": "abc123",
  "referenceId": "abc123"
}

RemovePolicyInput

Fields
Input Field Description
id - String! The id of the Policy
Example
{"id": "xyz789"}

RemovePolicyLabelInput

Fields
Input Field Description
id - String! The id of the Policy
labelId - String! The id of the Label
Example
{
  "id": "abc123",
  "labelId": "abc123"
}

RemovePolicyMarketCompanyLineInput

Fields
Input Field Description
id - String! The id of the Policy
lineId - String! The id of the Line
marketId - String! The id of the Market
Example
{
  "id": "abc123",
  "lineId": "abc123",
  "marketId": "xyz789"
}

RemovePolicyMarketCompanyLineTagInput

Fields
Input Field Description
id - String! The id of the Policy
lineId - String! The id of the Line
marketId - String! The id of the Market
tag - PolicyLineTag! The Policy Tag to remove
Example
{
  "id": "abc123",
  "lineId": "xyz789",
  "marketId": "abc123",
  "tag": "claims_agreement_party"
}

RemovePolicyMarketInput

Fields
Input Field Description
id - String! The id of the Policy
marketId - String! The id of the Market
Example
{
  "id": "xyz789",
  "marketId": "abc123"
}

RemovePolicyMarketWarrantyPolicyInput

Fields
Input Field Description
id - String! The id of the Policy
marketId - String! The id of the Market
warrantyPolicyId - String! The id of the Risk Framework/Warranty Policy
Example
{
  "id": "xyz789",
  "marketId": "abc123",
  "warrantyPolicyId": "xyz789"
}

RemovePolicyNamedInsuredInput

Fields
Input Field Description
id - String! The id of the Policy
insuredId - String! The id of the Company/Organisation
Example
{
  "id": "xyz789",
  "insuredId": "abc123"
}

RemoveStakeholderReferenceInput

Fields
Input Field Description
id - String! The id of the Adjustment
referenceId - String! The id of the Stakeholder's Reference
Example
{
  "id": "abc123",
  "referenceId": "xyz789"
}

Repairability

Values
Enum Value Description

not_applicable

repairable

undetermined

uneconomical

unrepairable

Example
"not_applicable"

ResourceActions

Fields
Field Name Description
actions - [PermissionAction!]!
resource - PermissionResource!
Example
{"actions": ["create"], "resource": "adjustment"}

Role

Fields
Field Name Description
description - String The description for the Zone
enabled - Boolean! The enabled status of the Role
group - Group
id - String! The id of the Role
name - String! The name of the Role
permissions - [Permission!]! The Permissions granted by the Role
scope - RoleScope! The Scope of the Role
zone - Zone
Example
{
  "description": "abc123",
  "enabled": true,
  "group": Group,
  "id": "abc123",
  "name": "xyz789",
  "permissions": [Permission],
  "scope": "global",
  "zone": Zone
}

RoleScope

Description

The scope of the Role, either Global or Zone

Values
Enum Value Description

global

zone

Example
"global"

Runway

Fields
Field Name Description
displacedThreshold - Int
elevation - Int
gradient - Decimal
id - Int!
latitude - Decimal
length - Int
lighting - [RunwayLighting!]!
longitude - Decimal
name - String!
surface - [RunwaySurface!]!
width - Int
Example
{
  "displacedThreshold": 123,
  "elevation": 987,
  "gradient": Decimal,
  "id": 987,
  "latitude": Decimal,
  "length": 123,
  "lighting": [RunwayLighting],
  "longitude": Decimal,
  "name": "abc123",
  "surface": [RunwaySurface],
  "width": 987
}

RunwayLighting

Fields
Field Name Description
id - String!
name - String!
Example
{
  "id": "xyz789",
  "name": "abc123"
}

RunwaySurface

Fields
Field Name Description
id - String!
name - String!
Example
{
  "id": "xyz789",
  "name": "xyz789"
}

SaveAdjustmentAllocationVersionInput

Fields
Input Field Description
id - String! The id of the Adjustment
Example
{"id": "abc123"}

SaveAdjustmentReportRevisionInput

Fields
Input Field Description
id - String! The id of the Adjustment
Example
{"id": "abc123"}

Stakeholder

Fields
Field Name Description
company - Company!
id - String! The id of the Stakeholder
roles - [StakeholderRole!]! The roles the Stakeholder may assume in the Zone
zone - Zone!
Example
{
  "company": Company,
  "id": "xyz789",
  "roles": ["broker"],
  "zone": Zone
}

StakeholderDisposition

Description

The disposition of the Stakeholder i.e. will it be used to assign the Stakeholder to a Resource, or will it be used to query by the Stakeholder.

Values
Enum Value Description

assignable

queryable

Example
"assignable"

StakeholderReference

Fields
Field Name Description
description - String A description for the Stakeholder Reference
id - String! The id of the Stakeholder Reference
reference - String! The Stakeholder's reference
stakeholder - Stakeholder
Example
{
  "description": "xyz789",
  "id": "abc123",
  "reference": "xyz789",
  "stakeholder": Stakeholder
}

StakeholderRole

Description

The Role a Stakeholder may assume in a Zone.

Values
Enum Value Description

broker

expert

insurer

operation

owner

Example
"broker"

String

Description

The String scalar type represents textual data, represented as UTF-8 character sequences. The String type is most often used by GraphQL to represent free-form human-readable text.

Example
"xyz789"

Subdivision

Fields
Field Name Description
code - String!
name - String!
Example
{
  "code": "abc123",
  "name": "abc123"
}

UpdateAdjustmentAirframeCrewMemberExperienceInput

Fields
Input Field Description
crewMemberId - String! The id of the Crew Member
id - String! The id of the Adjustment
licence - PilotLicence! The licence of the Crew Member
licenceCountryOfIssue - String (Optional) The country of issue for the Crew Member's licence. Default = null
licenceIssueDate - DateTime (Optional) The date of issue for the Crew Member's licence. Default = null
totalCyclesAll - Int (Optional) The total cycles for the Crew Member on all types. The value should be between 0 and 50000. Default = null
totalCyclesType - Int (Optional) The total cycles for the Crew Member on this type. The value should be between 0 and 50000. Default = null
totalHoursAll - Int (Optional) The total hours for the Crew Member on all types. The value should be between 0 and 100000. Default = null
totalHoursType - Int (Optional) The total hours the Crew Member on this type. The value should be between 0 and 100000. Default = null
Example
{
  "crewMemberId": "xyz789",
  "id": "abc123",
  "licence": "atpl",
  "licenceCountryOfIssue": "xyz789",
  "licenceIssueDate": "2007-12-03T10:15:30Z",
  "totalCyclesAll": 987,
  "totalCyclesType": 123,
  "totalHoursAll": 987,
  "totalHoursType": 987
}

UpdateAdjustmentAirframeCrewMemberFlightRoleInput

Fields
Input Field Description
crewMemberId - String! The id of the Crew Member
flightRole - FlightCrewRole! The flight role of the Crew Member
id - String! The id of the Adjustment
lastBaseCheck - DateTime (Optional) The last base check of the Crew Member. Default = null
lastLineCheck - DateTime (Optional) The last line check of the Crew Member. Default = null
lastMedicalCheck - DateTime (Optional) The last medical check of the Crew Member. Default = null
medicalFitness - PilotMedicalFitness! The medical fitness of the Crew Member
rank - PilotRank! The rank of the Crew Member
Example
{
  "crewMemberId": "xyz789",
  "flightRole": "pilot_flying",
  "id": "xyz789",
  "lastBaseCheck": "2007-12-03T10:15:30Z",
  "lastLineCheck": "2007-12-03T10:15:30Z",
  "lastMedicalCheck": "2007-12-03T10:15:30Z",
  "medicalFitness": "fit_to_fly",
  "rank": "cadet_trainee"
}

UpdateAdjustmentAirframeCrewMemberInput

Fields
Input Field Description
crewMemberId - String! The id of the Crew Member
dateOfBirth - DateTime! The Crew Member's date of birth
familyName - String! The Crew Member's family name/surname. The length should be between 2 and 64 characters
firstName - String! The Crew Member's first/given name. The length should be between 2 and 64 characters
id - String! The id of the Adjustment
nationalities - [String!]! The Crew Member's nationalities. Default = []
role - AircraftCrewRole! The role of the Crew Member during the flight
sex - IndividualSex! The sex of the Crew Member
Example
{
  "crewMemberId": "abc123",
  "dateOfBirth": "2007-12-03T10:15:30Z",
  "familyName": "xyz789",
  "firstName": "abc123",
  "id": "xyz789",
  "nationalities": ["abc123"],
  "role": "cabincrew",
  "sex": "female"
}

UpdateAdjustmentAirframeCrewMemberNarrativeInput

Fields
Input Field Description
crewMemberId - String! The id of the Crew Member
id - String! The id of the Adjustment
narrative - JSONObject A narrative describing the Crew Member. This must be a TipTap JSON object.
Example
{
  "crewMemberId": "xyz789",
  "id": "abc123",
  "narrative": {}
}

UpdateAdjustmentAirframeCrewMemberWorkloadInput

Fields
Input Field Description
crewMemberId - String! The id of the Crew Member
id - String! The id of the Adjustment
totalCyclesLast7d - Int (Optional) The total cycles for the last 7 days. The value should be between 0 and 28. Default = null
totalCyclesLast24h - Int (Optional) The total cycles for the last 24 hours. The value should be between 0 and 6. Default = null
totalCyclesLast30d - Int (Optional) The total cycles for the last 30 days. The value should be between 0 and 60. Default = null
totalHoursLast7d - Int (Optional) The total hours for the last 7 days. The value should be between 0 and 80. Default = null
totalHoursLast24h - Int (Optional) The total hours for the last 24 hours. The value should be between 0 and 18. Default = null
totalHoursLast30d - Int (Optional) The total hours for the last 30 days. The value should be between 0 and 320. Default = null
Example
{
  "crewMemberId": "xyz789",
  "id": "abc123",
  "totalCyclesLast7d": 987,
  "totalCyclesLast24h": 987,
  "totalCyclesLast30d": 987,
  "totalHoursLast7d": 123,
  "totalHoursLast24h": 987,
  "totalHoursLast30d": 987
}

UpdateAdjustmentAirframeEngineDamageInput

Fields
Input Field Description
components - [AirframeEngineComponent!]! The Engine component damaged
damageId - String! The id of the Damage
extent - DamageExtent! The extent damage to the Engine
id - String! The id of the Adjustment
narrative - JSONObject A narrative describing the Damage. This must be a TipTap JSON object. Default = null
Example
{
  "components": ["carburettor"],
  "damageId": "abc123",
  "extent": "destroyed",
  "id": "xyz789",
  "narrative": {}
}

UpdateAdjustmentAirframeEngineDamageNarrativeInput

Fields
Input Field Description
damageId - String! The id of the Damage
id - String! The id of the Adjustment
narrative - JSONObject A narrative describing the Damage. This must be a TipTap JSON object. Default = null
Example
{
  "damageId": "xyz789",
  "id": "xyz789",
  "narrative": {}
}

UpdateAdjustmentAirframeEngineInput

Fields
Input Field Description
engineId - String! The id of the Engine
id - String! The id of the Adjustment
lease - LeaseStatus! The lease status of the Engine
manufacturerId - Int! The id of the Manufacturer
modelId - Int! The id of the Model
position - AirframeEnginePosition! The position of the Engine
repairability - Repairability! The repairability of the Engine
serialNumber - String (Optional) The serial number of the Engine. The length should be between 1 and 32 characters. Default = null
workload - UpdateAdjustmentAirframeEngineWorkloadInput The Workload of the Engine. Default = null
yearOfManufacture - Int (Optional) The year the Engine was manufactured. The value should be between 1980 and 2025. Default = null
Example
{
  "engineId": "xyz789",
  "id": "abc123",
  "lease": "leased",
  "manufacturerId": 123,
  "modelId": 123,
  "position": "apu",
  "repairability": "not_applicable",
  "serialNumber": "xyz789",
  "workload": UpdateAdjustmentAirframeEngineWorkloadInput,
  "yearOfManufacture": 987
}

UpdateAdjustmentAirframeEngineMaintenanceCheckInput

Fields
Input Field Description
companyId - String! The id of the Company/Organisation who performed the Maintenance/Check
cyclesAtCheck - Int (Optional) The number of cycles at the time of the Maintenance/Check. The value should be between 0 and 100000. Default = null
endDate - DateTime! The end date of the Maintenance/Check. This date must be after the start date and before the loss date
hoursAtCheck - Int (Optional) The number of hours at the time of the Maintenance/Check. The value should be between 0 and 200000. Default = null
id - String! The id of the Adjustment
location - EngineMaintenanceCheckLocation! The location for the Maintenance/Check
maintenanceCheckId - String! The id of the Maintenance/Check
reason - MaintenanceCheckReason! The reason for Maintenance/Check
startDate - DateTime! The start date of the Maintenance/Check. This date must be before the loss date
types - [EngineMaintenanceCheck!]! The type of Maintenance/Check
Example
{
  "companyId": "xyz789",
  "cyclesAtCheck": 123,
  "endDate": "2007-12-03T10:15:30Z",
  "hoursAtCheck": 987,
  "id": "xyz789",
  "location": "off_wing",
  "maintenanceCheckId": "abc123",
  "reason": "non_routine",
  "startDate": "2007-12-03T10:15:30Z",
  "types": ["borescope_inspection"]
}

UpdateAdjustmentAirframeEngineMaintenanceCheckNarrativeInput

Fields
Input Field Description
id - String! The id of the Adjustment
maintenanceCheckId - String! The id of the Maintenance/Check
narrative - JSONObject A narrative describing the Maintenance/Check. This must be a TipTap JSON object. Default = null
Example
{
  "id": "xyz789",
  "maintenanceCheckId": "xyz789",
  "narrative": {}
}

UpdateAdjustmentAirframeEngineWorkloadInput

Fields
Input Field Description
cyclesSinceNew - Int (Optional). The number of cycles since new. The value should be between 0 and 100000. Default = null
hoursSinceNew - Int (Optional). The number of hours since new. The value should be between 0 and 200000. Default = null
Example
{"cyclesSinceNew": 123, "hoursSinceNew": 123}

UpdateAdjustmentAirframeMaintenanceCheckInput

Fields
Input Field Description
companyId - String! The id of the Company/Organisation who performed the Maintenance/Check
cyclesAtCheck - Int (Optional) The number of cycles at the time of the Maintenance/Check. The value should be between 0 and 100000. Default = null
endDate - DateTime! The end date of the Maintenance/Check. This date must be after the start date and before the loss date
hoursAtCheck - Int (Optional) The number of hours at the time of the Maintenance/Check. The value should be between 0 and 200000. Default = null
id - String! The id of the Adjustment
maintenanceCheckId - String! The id of the Maintenance/Check
reason - MaintenanceCheckReason! The reason for Maintenance/Check
startDate - DateTime! The start date of the Maintenance/Check. This date must be before the loss date
types - [AirframeMaintenanceCheck!]! The type of Maintenance/Check
Example
{
  "companyId": "abc123",
  "cyclesAtCheck": 123,
  "endDate": "2007-12-03T10:15:30Z",
  "hoursAtCheck": 123,
  "id": "abc123",
  "maintenanceCheckId": "abc123",
  "reason": "non_routine",
  "startDate": "2007-12-03T10:15:30Z",
  "types": ["a_check"]
}

UpdateAdjustmentAirframeMaintenanceCheckNarrativeInput

Fields
Input Field Description
id - String! The id of the Adjustment
maintenanceCheckId - String! The id of the Maintenance/Check
narrative - JSONObject A narrative describing the Maintenance/Check. This must be a TipTap JSON object. Default = null
Example
{
  "id": "abc123",
  "maintenanceCheckId": "xyz789",
  "narrative": {}
}

UpdateAdjustmentAirframeNarrativeInput

Fields
Input Field Description
airframeId - String! The id of the Airframe
id - String! The id of the Adjustment
narrative - JSONObject A narrative describing the occurrence. This must be a TipTap JSON object. Default = null
Example
{
  "airframeId": "xyz789",
  "id": "xyz789",
  "narrative": {}
}

UpdateAdjustmentAirframeOccurrenceInput

Fields
Input Field Description
airframeId - String! The id of the Airframe
causalFactors - [AircraftHullLossCausalFactor!]! The causal factors for the Loss
crew - Int (Optional) The number of crew members on board. The value should be between 0 and 16. Default = null
flightOutcome - FlightOutcome (Optional) The outcome of the Flight. Default = null
flightPhase - FlightPhase (Optional) The phase of the Flight. Default = null
flightType - FlightType! The type/purpose of the Flight
gForceLanding - Decimal (Optional) The g-force experienced during landing. The value should be between 0 and 10. Default = null
goArounds - Int (Optional) The number of go-arounds performed. The value should be between 0 and 10. Default = null
id - String! The id of the Adjustment
landingWeight - Int (Optional) The landing weight (kg) of the aircraft. The value should be between 0 and 600000. Default = null
passengers - Int (Optional) The number of passengers on board. The value should be between 0 and 600. Default = null
physicalDamage - PhysicalDamage! The physical damage to the Airframe
takeoffWeight - Int (Optional) The takeoff weight (kg) of the aircraft. The value should be between 0 and 650000. Default = null
Example
{
  "airframeId": "xyz789",
  "causalFactors": ["aircraft_avionics_failure"],
  "crew": 987,
  "flightOutcome": "cfit",
  "flightPhase": "approach_approach",
  "flightType": "commercial_charter_adhoc",
  "gForceLanding": Decimal,
  "goArounds": 123,
  "id": "xyz789",
  "landingWeight": 987,
  "passengers": 123,
  "physicalDamage": "none",
  "takeoffWeight": 123
}

UpdateAdjustmentAirframePartDamageInput

Fields
Input Field Description
components - [AirframeSystemComponent!]! The Airframe System/Component damaged
damageId - String! The id of the Damage
description - String (Optional) A description of the Part. The length should be between 1 and 64 characters. Default = null
extent - DamageExtent! The extent damage to the Part
id - String! The id of the Adjustment
manufacturer - String (Optional) The manufacturer of the Part. The length should be between 1 and 32 characters. Default = null
narrative - JSONObject A narrative describing the Damage. This must be a TipTap JSON object. Default = null
partModelNumber - String (Optional) The model/part number of the Part. The length should be between 1 and 32 characters. Default = null
serialNumber - String (Optional) The serial number of the Part. The length should be between 1 and 32 characters. Default = null
Example
{
  "components": ["auxiliary_power_apu_bleed_valve"],
  "damageId": "xyz789",
  "description": "abc123",
  "extent": "destroyed",
  "id": "xyz789",
  "manufacturer": "xyz789",
  "narrative": {},
  "partModelNumber": "abc123",
  "serialNumber": "xyz789"
}

UpdateAdjustmentAirframePartDamageNarrativeInput

Fields
Input Field Description
damageId - String! The id of the Damage
id - String! The id of the Adjustment
narrative - JSONObject A narrative describing the Damage. This must be a TipTap JSON object. Default = null
Example
{
  "damageId": "abc123",
  "id": "abc123",
  "narrative": {}
}

UpdateAdjustmentAirframeWorkloadInput

Fields
Input Field Description
airframeId - String! The id of the Airframe
cyclesSinceNew - Int (Optional). The number of cycles since new. The value should be between 0 and 100000. Default = null
hoursSinceNew - Int (Optional). The number of hours since new. The value should be between 0 and 200000. Default = null
id - String! The id of the Adjustment
Example
{
  "airframeId": "abc123",
  "cyclesSinceNew": 123,
  "hoursSinceNew": 123,
  "id": "abc123"
}

UpdateAdjustmentCollaboratorInput

Fields
Input Field Description
actorId - String! The id of the Collaborator
id - String! The id of the Adjustment
stakeholderId - String! The id of the Stakeholder
userId - String! The id of the User
Example
{
  "actorId": "abc123",
  "id": "abc123",
  "stakeholderId": "abc123",
  "userId": "abc123"
}

UpdateAdjustmentCostExpensePaymentInput

Fields
Input Field Description
amount - DenominationInput! The amount for the payment
coverage - CostExpenseCoverage! The coverage for the Payment/Disbursement
dateOfPayment - DateTime! The date of the payment
id - String! The id of the Adjustment
legalEntityId - String! The id of the Legal Entity for which the Payment/Disbursement is intended
paymentId - String! The id of the Payment/Disbursement
reportingAmount - DenominationInput! The amount for the payment in the reporting currency
Example
{
  "amount": DenominationInput,
  "coverage": "bail_guarantee",
  "dateOfPayment": "2007-12-03T10:15:30Z",
  "id": "abc123",
  "legalEntityId": "xyz789",
  "paymentId": "abc123",
  "reportingAmount": DenominationInput
}

UpdateAdjustmentCostExpenseReserveInput

Fields
Input Field Description
amount - DenominationInput! The amount for the reserve
coverage - CostExpenseCoverage! The coverage for the Reserve
id - String! The id of the Adjustment
legalEntityId - String (Optional) The id of the Legal Entity for which the Reserve is intended. Default = null
reserveId - String! The id of the Reserve
Example
{
  "amount": DenominationInput,
  "coverage": "bail_guarantee",
  "id": "abc123",
  "legalEntityId": "abc123",
  "reserveId": "xyz789"
}

UpdateAdjustmentDocumentMetadataInput

Fields
Input Field Description
documentId - String! The id of the Document
id - String! The id of the Adjustment
narrative - JSONObject A narrative describing the Document. This must be a TipTap JSON object. Default = null
Example
{
  "documentId": "xyz789",
  "id": "abc123",
  "narrative": {}
}

UpdateAdjustmentExecutiveSummaryInput

Fields
Input Field Description
executiveSummary - JSONObject! A narrative providing the executive summary. This must be a TipTap JSON object.
id - String! The id of the Adjustment
Example
{"executiveSummary": {}, "id": "abc123"}

UpdateAdjustmentExpertInput

Fields
Input Field Description
id - String! The id of the Adjustment
stakeholderId - String! The id of the Stakeholder
userId - String! The id of the User
Example
{
  "id": "xyz789",
  "stakeholderId": "xyz789",
  "userId": "abc123"
}

UpdateAdjustmentFeePaymentInput

Fields
Input Field Description
allocation - FeeAllocation! The allocation for the Payment/Disbursement
amount - DenominationInput! The amount for the Payment/Disbursement
dateOfPayment - DateTime! The date of the Payment/Disbursement
id - String! The id of the Adjustment
legalEntityId - String! The id of the Legal Entity for which the Payment/Disbursement is intended
paymentId - String! The id of the Payment/Disbursement
reportingAmount - DenominationInput! The amount for the Payment/Disbursement in the reporting currency
Example
{
  "allocation": "correspondent",
  "amount": DenominationInput,
  "dateOfPayment": "2007-12-03T10:15:30Z",
  "id": "xyz789",
  "legalEntityId": "abc123",
  "paymentId": "xyz789",
  "reportingAmount": DenominationInput
}

UpdateAdjustmentFeeReserveInput

Fields
Input Field Description
allocation - FeeAllocation! The allocation for the Reserve
amount - DenominationInput! The amount for the reserve
id - String! The id of the Adjustment
legalEntityId - String (Optional) The id of the Legal Entity for which the Reserve is intended. Default = null
reserveId - String! The id of the Reserve
Example
{
  "allocation": "correspondent",
  "amount": DenominationInput,
  "id": "abc123",
  "legalEntityId": "abc123",
  "reserveId": "abc123"
}

UpdateAdjustmentFlightAerodromeInput

Fields
Input Field Description
aerodromeId - Float! The id of the Aerodrome
date - DateTime! The departure/arrival date of the Flight
flightId - String! The id of the Flight
id - String! The id of the Adjustment
runwayId - Int The id of the Runway. Default = null
Example
{
  "aerodromeId": 123.45,
  "date": "2007-12-03T10:15:30Z",
  "flightId": "abc123",
  "id": "abc123",
  "runwayId": 987
}

UpdateAdjustmentFlightFlightNumbersInput

Fields
Input Field Description
codeShares - [String!] (Optional) The code shares of the Flight. Default = []
flightId - String! The id of the Flight
iata - String (Optional) The IATA code of the Flight. Default = null
icao - String (Optional) The ICAO code of the Flight. Default = null
id - String! The id of the Adjustment
Example
{
  "codeShares": ["xyz789"],
  "flightId": "abc123",
  "iata": "xyz789",
  "icao": "xyz789",
  "id": "xyz789"
}

UpdateAdjustmentFlightOperatorInput

Fields
Input Field Description
flightId - String! The id of the Flight
id - String! The id of the Adjustment
operatorId - Int! The id of the Operator
Example
{
  "flightId": "xyz789",
  "id": "abc123",
  "operatorId": 987
}

UpdateAdjustmentImageMetadataInput

Fields
Input Field Description
caption - String (Optional) A caption for the Image. The length should be between 4 and 256 characters. Default = null
id - String! The id of the Adjustment
imageId - String! The id of the Image
narrative - JSONObject (Optional) A narrative describing the Image. This must be a TipTap JSON object. Default = null
Example
{
  "caption": "abc123",
  "id": "abc123",
  "imageId": "xyz789",
  "narrative": {}
}

UpdateAdjustmentIndemnityPaymentInput

Fields
Input Field Description
airframeId - String The id of the Airframe. Default = null
allocation - IndemnityAllocation! The indemnity allocation for the Payment/Disbursement
amount - DenominationInput! The amount for the payment
category - IndemnityCategory! The indemnity category for the Payment/Disbursement
coverage - IndemnityCoverage! The indemnity coverage for the Payment/Disbursement
dateOfPayment - DateTime! The date of the payment
id - String! The id of the Adjustment
legalEntityId - String! The id of the Legal Entity for which the Payment/Disbursement is intended
paymentId - String! The id of the Payment/Disbursement
reportingAmount - DenominationInput! The amount for the payment in the reporting currency
Example
{
  "airframeId": "abc123",
  "allocation": "advance_payment",
  "amount": DenominationInput,
  "category": "aircraft_hull",
  "coverage": "aircraft_hull",
  "dateOfPayment": "2007-12-03T10:15:30Z",
  "id": "xyz789",
  "legalEntityId": "xyz789",
  "paymentId": "xyz789",
  "reportingAmount": DenominationInput
}

UpdateAdjustmentIndemnityReserveInput

Fields
Input Field Description
airframeId - String (Optional) The id of the Airframe. Default = null
allocation - IndemnityAllocation! The indemnity allocation for the Reserve
amount - DenominationInput! The amount for the reserve
category - IndemnityCategory! The indemnity category for the Reserve
coverage - IndemnityCoverage! The indemnity coverage for the Reserve
id - String! The id of the Adjustment
legalEntityId - String (Optional) The id of the Legal Entity for which the Reserve is intended. Default = null
reserveId - String! The id of the Reserve
Example
{
  "airframeId": "abc123",
  "allocation": "advance_payment",
  "amount": DenominationInput,
  "category": "aircraft_hull",
  "coverage": "aircraft_hull",
  "id": "abc123",
  "legalEntityId": "xyz789",
  "reserveId": "abc123"
}

UpdateAdjustmentIndividualInput

Fields
Input Field Description
address - LocationAddressLocalityInput! The Individual's address
dateOfBirth - DateTime! The Individual's date of birth
familyName - String! The Individual's family name/surname. The length should be between 2 and 64 characters
firstName - String! The Individual's first/given name. The length should be between 2 and 64 characters
id - String! The id of the Adjustment
individualId - String! The id of the Individual
nationalities - [String!]! The Individual's nationalities
sex - IndividualSex! The Individual's sex
Example
{
  "address": LocationAddressLocalityInput,
  "dateOfBirth": "2007-12-03T10:15:30Z",
  "familyName": "xyz789",
  "firstName": "abc123",
  "id": "abc123",
  "individualId": "xyz789",
  "nationalities": ["xyz789"],
  "sex": "female"
}

UpdateAdjustmentLossDateInput

Fields
Input Field Description
date - DateTime! The date of loss
id - String! The id of the Adjustment
Example
{
  "date": "2007-12-03T10:15:30Z",
  "id": "abc123"
}

UpdateAdjustmentOwnerInput

Fields
Input Field Description
id - String! The id of the Adjustment
stakeholderId - String! The id of the Stakeholder
userId - String! The id of the User
Example
{
  "id": "xyz789",
  "stakeholderId": "xyz789",
  "userId": "abc123"
}

UpdateAdjustmentPaymentNarrativeInput

Fields
Input Field Description
id - String! The id of the Adjustment
narrative - JSONObject A narrative describing the Payment/Disbursement. This must be a TipTap JSON object. Default = null
paymentId - String! The id of the Payment/Disbursement
Example
{
  "id": "abc123",
  "narrative": {},
  "paymentId": "xyz789"
}

UpdateAdjustmentPolicyAllocationLineInput

Fields
Input Field Description
id - String! The id of the Adjustment
lineId - String! The id of the Line
paid - DenominationInput! The amount paid for the Line
reserved - DenominationInput! The amount reserved for the Line
Example
{
  "id": "abc123",
  "lineId": "xyz789",
  "paid": DenominationInput,
  "reserved": DenominationInput
}

UpdateAdjustmentPolicyInput

Fields
Input Field Description
claimsReference - String (Optional) The claims Reference for the Policy. The length should be between 4 and 32 characters. Default = null
id - String! The id of the Adjustment
policyId - String! The id of the Policy
Example
{
  "claimsReference": "abc123",
  "id": "xyz789",
  "policyId": "abc123"
}

UpdateAdjustmentRecommendationsInput

Fields
Input Field Description
id - String! The id of the Adjustment
recommendations - JSONObject! A narrative describing the recommendations. This must be a TipTap JSON object.
Example
{"id": "xyz789", "recommendations": {}}

UpdateAdjustmentReportDateInput

Fields
Input Field Description
date - DateTime! The date the loss was first reported
id - String! The id of the Adjustment
Example
{
  "date": "2007-12-03T10:15:30Z",
  "id": "abc123"
}

UpdateAdjustmentReportingCurrencyInput

Fields
Input Field Description
id - String! The id of the Adjustment
reportingCurrency - String! The reporting currency of the Adjustment
Example
{
  "id": "xyz789",
  "reportingCurrency": "abc123"
}

UpdateAdjustmentReserveNarrativeInput

Fields
Input Field Description
id - String! The id of the Adjustment
narrative - JSONObject A narrative describing the Reserve. This must be a TipTap JSON object. Default = null
reserveId - String! The id of the Reserve
Example
{
  "id": "xyz789",
  "narrative": {},
  "reserveId": "xyz789"
}

UpdateAdjustmentRetainedAllocationLineInput

Fields
Input Field Description
amount - DenominationInput! The amount for the Line
id - String! The id of the Adjustment
lineId - String! The id of the Line
Example
{
  "amount": DenominationInput,
  "id": "abc123",
  "lineId": "abc123"
}

UpdateAdjustmentStatusInput

Fields
Input Field Description
id - String! The id of the Adjustment
status - String! The status of the Adjustment
Example
{
  "id": "abc123",
  "status": "xyz789"
}

UpdateCompanyInput

Fields
Input Field Description
addressLine1 - String
addressLine2 - String
countryCode - String!
county - String
groupId - String
id - String!
locality - String
name - String!
postalCode - String
region - String
streetName - String
Example
{
  "addressLine1": "abc123",
  "addressLine2": "abc123",
  "countryCode": "xyz789",
  "county": "xyz789",
  "groupId": "abc123",
  "id": "xyz789",
  "locality": "abc123",
  "name": "abc123",
  "postalCode": "xyz789",
  "region": "abc123",
  "streetName": "xyz789"
}

UpdateCompanyReportSettingsInput

Fields
Input Field Description
fontFamily - String
footerImageMargin - Int
footerImageRepetition - HeaderFooterRepetition
footerText - String
footerTextMargin - Int
footerTextRepetition - HeaderFooterRepetition
headerImageMargin - Int
headerImageRepetition - HeaderFooterRepetition
id - String!
pageNumberPosition - PageNumberPosition
pageNumberRepetition - PageNumberRepetition
Example
{
  "fontFamily": "xyz789",
  "footerImageMargin": 123,
  "footerImageRepetition": "all",
  "footerText": "xyz789",
  "footerTextMargin": 987,
  "footerTextRepetition": "all",
  "headerImageMargin": 123,
  "headerImageRepetition": "all",
  "id": "abc123",
  "pageNumberPosition": "center",
  "pageNumberRepetition": "all"
}

UpdateCompanyStampCodesInput

Fields
Input Field Description
id - String!
stampCodes - [String!]!
Example
{
  "id": "xyz789",
  "stampCodes": ["xyz789"]
}

UpdateLocationAddressLocality

Fields
Input Field Description
address - String
countryCode - String!
display - String!
district - String
locality - String
neighbourhood - String
place - String
postalCode - String
regionCode - String
Example
{
  "address": "xyz789",
  "countryCode": "xyz789",
  "display": "abc123",
  "district": "abc123",
  "locality": "xyz789",
  "neighbourhood": "xyz789",
  "place": "xyz789",
  "postalCode": "xyz789",
  "regionCode": "abc123"
}

UpdateLocationAerodrome

Fields
Input Field Description
id - Float!
Example
{"id": 987.65}

UpdateLocationCoordinates

Fields
Input Field Description
latitude - Decimal!
longitude - Decimal!
Example
{
  "latitude": Decimal,
  "longitude": Decimal
}

UpdateLocationInput

Fields
Input Field Description
address - UpdateLocationAddressLocality
aerodrome - UpdateLocationAerodrome
coordinates - UpdateLocationCoordinates
id - String!
locality - UpdateLocationAddressLocality
specificity - LocationSpecificity!
Example
{
  "address": UpdateLocationAddressLocality,
  "aerodrome": UpdateLocationAerodrome,
  "coordinates": UpdateLocationCoordinates,
  "id": "xyz789",
  "locality": UpdateLocationAddressLocality,
  "specificity": "address"
}

UpdateLossCategoriesInput

Fields
Input Field Description
categories - [LossCategory!]!
id - String!
Example
{
  "categories": ["aircraft_hull"],
  "id": "xyz789"
}

UpdateLossNoticeAirframeEngineDamageInput

Fields
Input Field Description
components - [AirframeEngineComponent!]!
damageId - String!
extent - DamageExtent!
id - String!
narrative - JSONObject
Example
{
  "components": ["carburettor"],
  "damageId": "abc123",
  "extent": "destroyed",
  "id": "xyz789",
  "narrative": {}
}

UpdateLossNoticeAirframeEngineDamageNarrativeInput

Fields
Input Field Description
damageId - String!
id - String!
narrative - JSONObject
Example
{
  "damageId": "abc123",
  "id": "abc123",
  "narrative": {}
}

UpdateLossNoticeAirframeEngineInput

Fields
Input Field Description
engineId - String!
id - String!
lease - LeaseStatus! The lease status of the Engine
manufacturerId - Int!
modelId - Int!
position - AirframeEnginePosition!
serialNumber - String
workload - UpdateLossNoticeAirframeEngineWorkloadInput
yearOfManufacture - Int
Example
{
  "engineId": "xyz789",
  "id": "abc123",
  "lease": "leased",
  "manufacturerId": 987,
  "modelId": 987,
  "position": "apu",
  "serialNumber": "xyz789",
  "workload": UpdateLossNoticeAirframeEngineWorkloadInput,
  "yearOfManufacture": 123
}

UpdateLossNoticeAirframeEngineWorkloadInput

Fields
Input Field Description
cyclesSinceNew - Int
hoursSinceNew - Int
Example
{"cyclesSinceNew": 987, "hoursSinceNew": 987}

UpdateLossNoticeAirframePartDamageInput

Fields
Input Field Description
components - [AirframeSystemComponent!]!
damageId - String!
description - String
extent - DamageExtent!
id - String!
manufacturer - String
narrative - JSONObject
partModelNumber - String
serialNumber - String
Example
{
  "components": ["auxiliary_power_apu_bleed_valve"],
  "damageId": "xyz789",
  "description": "abc123",
  "extent": "destroyed",
  "id": "xyz789",
  "manufacturer": "xyz789",
  "narrative": {},
  "partModelNumber": "xyz789",
  "serialNumber": "abc123"
}

UpdateLossNoticeAirframePartDamageNarrativeInput

Fields
Input Field Description
damageId - String!
id - String!
narrative - JSONObject
Example
{
  "damageId": "xyz789",
  "id": "abc123",
  "narrative": {}
}

UpdateLossNoticeAirframeWorkloadInput

Fields
Input Field Description
airframeId - String!
cyclesSinceNew - Int
hoursSinceNew - Int
id - String!
Example
{
  "airframeId": "abc123",
  "cyclesSinceNew": 123,
  "hoursSinceNew": 987,
  "id": "xyz789"
}

UpdateLossNoticeDocumentMetadataInput

Fields
Input Field Description
documentId - String!
id - String!
narrative - JSONObject
Example
{
  "documentId": "xyz789",
  "id": "abc123",
  "narrative": {}
}

UpdateLossNoticeFlightAerodromeInput

Fields
Input Field Description
aerodromeId - Float!
date - DateTime!
flightId - String!
id - String!
runwayId - Float
Example
{
  "aerodromeId": 987.65,
  "date": "2007-12-03T10:15:30Z",
  "flightId": "abc123",
  "id": "xyz789",
  "runwayId": 123.45
}

UpdateLossNoticeFlightFlightNumbersInput

Fields
Input Field Description
codeShares - [String!] (Optional) The code shares of the Flight. Default = []
flightId - String!
iata - String (Optional) The IATA code of the Flight. Default = null
icao - String (Optional) The ICAO code of the Flight. Default = null
id - String!
Example
{
  "codeShares": ["abc123"],
  "flightId": "xyz789",
  "iata": "abc123",
  "icao": "abc123",
  "id": "xyz789"
}

UpdateLossNoticeFlightOperatorInput

Fields
Input Field Description
flightId - String!
id - String!
operatorId - Int!
Example
{
  "flightId": "xyz789",
  "id": "abc123",
  "operatorId": 987
}

UpdateLossNoticeImageMetadataInput

Fields
Input Field Description
caption - String
id - String!
imageId - String!
narrative - JSONObject
Example
{
  "caption": "abc123",
  "id": "abc123",
  "imageId": "abc123",
  "narrative": {}
}

UpdateLossNoticeLossDateInput

Fields
Input Field Description
date - DateTime!
id - String!
Example
{
  "date": "2007-12-03T10:15:30Z",
  "id": "xyz789"
}

UpdateLossNoticeNarrativeInput

Fields
Input Field Description
id - String!
narrative - JSONObject!
Example
{"id": "abc123", "narrative": {}}

UpdateLossNoticeReportDateInput

Fields
Input Field Description
date - DateTime!
id - String!
Example
{
  "date": "2007-12-03T10:15:30Z",
  "id": "xyz789"
}

UpdateMarketReferenceInput

Fields
Input Field Description
id - String! The id of the Adjustment
reference - String! The Market reference
referenceId - String! The id of the Market Reference
Example
{
  "id": "xyz789",
  "reference": "xyz789",
  "referenceId": "abc123"
}

UpdateOperationInput

Fields
Input Field Description
id - String! The id of the Adjustment/Loss Notice
operationId - String! The id of the Operation
Example
{
  "id": "xyz789",
  "operationId": "abc123"
}

UpdatePolicyDetailsInput

Fields
Input Field Description
cls - ClassOfBusiness (Optional). The Class of Business of the Policy. Defaults to Aviation. Default = aviation
endDate - DateTime! The end date of the Policy
id - String! The id of the Policy
policyNumber - String! The Policy number. The length should be between 4 and 32 characters
policyholderId - String! The id of the Policyholder Company/Organisation
primaryBrokerId - String! The id of the primary Broker Company/Organisation
secondaryBrokerId - String (Optional) The id of the secondary Broker Company/Organisation. Default = null
startDate - DateTime! The start date of the Policy
Example
{
  "cls": "aviation",
  "endDate": "2007-12-03T10:15:30Z",
  "id": "abc123",
  "policyNumber": "abc123",
  "policyholderId": "xyz789",
  "primaryBrokerId": "xyz789",
  "secondaryBrokerId": "xyz789",
  "startDate": "2007-12-03T10:15:30Z"
}

UpdatePolicyMarketCompanyLineInput

Fields
Input Field Description
id - String! The id of the Policy
insurerId - String! The id of the Company/Organisation
lineId - String! The id of the Line
lineSize - Decimal! The size of the Line
marketId - String! The id of the Market
reference - String (Optional) The Insurer Reference. The length should be between 4 and 32 characters. Default = null
stampCode - String (Optional) The Insurer Stamp Code. The length should be between 4 and 16 characters. Default = null
Example
{
  "id": "xyz789",
  "insurerId": "xyz789",
  "lineId": "abc123",
  "lineSize": Decimal,
  "marketId": "xyz789",
  "reference": "abc123",
  "stampCode": "xyz789"
}

UpdatePolicyMarketInput

Fields
Input Field Description
id - String! The id of the Policy
marketId - String! The id of the Market
type - [PolicyType!]! The coverages types for the Market
Example
{
  "id": "abc123",
  "marketId": "xyz789",
  "type": ["aviation_contingent_hull_all_risk"]
}

UpdatePolicyMarketWarrantyPolicyInput

Fields
Input Field Description
description - String! The Risk Framework/Warranty Policy Description. The length should be at most 512 characters
id - String! The id of the Policy
marketId - String! The id of the Market
reference - String! The Risk Framework/Warranty Policy Reference. The length should be between 4 and 32 characters
warrantyPolicyId - String! The id of the Risk Framework/Warranty Policy
Example
{
  "description": "xyz789",
  "id": "xyz789",
  "marketId": "abc123",
  "reference": "xyz789",
  "warrantyPolicyId": "xyz789"
}

UpdatePolicyTypeInput

Fields
Input Field Description
id - String! The id of the Policy
type - [PolicyType!]! The types of coverage for the Policy
Example
{
  "id": "xyz789",
  "type": ["aviation_contingent_hull_all_risk"]
}

UpdateReporterInput

Fields
Input Field Description
id - String! The id of the Adjustment/Loss Notice
reporterId - String! The id of the User that reported the loss
Example
{
  "id": "abc123",
  "reporterId": "xyz789"
}

UpdateRoleInput

Fields
Input Field Description
description - String (Optional) The description for the Zone. The length should be at most 512 characters. Default = null
groupId - String (Optional) The id of the Group the Role is associated with. Default = null
id - String! The id of the Role
name - String! The name of the Role. The length should be between 5 and 64 characters
Example
{
  "description": "abc123",
  "groupId": "xyz789",
  "id": "xyz789",
  "name": "xyz789"
}

UpdateRolePermissionConditionInput

Fields
Input Field Description
from - DateTime (Optional) The Date from when the condition is valid. Default = null
id - String! The id of the Role
permissionId - String! The id of the Permission
roles - [PermissionRoleCondition!] The Resource Roles a User must have in order to satisfy conditional access
to - DateTime (Optional) The Date until when the condition is valid. Default = null
Example
{
  "from": "2007-12-03T10:15:30Z",
  "id": "xyz789",
  "permissionId": "abc123",
  "roles": ["collaborator"],
  "to": "2007-12-03T10:15:30Z"
}

UpdateRolePermissionInput

Fields
Input Field Description
actions - [PermissionAction!]! The Actions the Permission allows
enabled - Boolean The enabled status of the Permission. Default = false
id - String! The id of the Role
permissionId - String! The id of the Permission
resource - PermissionResource! The Resource the permission applies to
Example
{
  "actions": ["create"],
  "enabled": false,
  "id": "xyz789",
  "permissionId": "xyz789",
  "resource": "adjustment"
}

UpdateStakeholderInput

Fields
Input Field Description
id - String! The id of the Stakeholder
roles - [StakeholderRole!]! The Roles the Stakeholder may assume in the Zone
Example
{"id": "abc123", "roles": ["broker"]}

UpdateStakeholderReferenceInput

Fields
Input Field Description
description - String (Optional) A description of the Stakeholder reference. The length should be between 1 and 512 characters. Default = null
id - String! The id of the Adjustment
reference - String! The Stakeholder's reference. The length should be between 4 and 32 characters
referenceId - String! The id of the Stakeholder's Reference
Example
{
  "description": "xyz789",
  "id": "abc123",
  "reference": "abc123",
  "referenceId": "xyz789"
}

UpdateZoneInput

Fields
Input Field Description
description - String (Optional) The description for the Zone. The length should be at most 512 characters. Default = null
id - String! The id of the Zone
name - String! The name of the Zone. The length should be between 5 and 64 characters
Example
{
  "description": "abc123",
  "id": "xyz789",
  "name": "xyz789"
}

User

Fields
Field Name Description
active - Boolean!
displayName - String
emails - [UserEmail!]!
groups - [Group!]!
id - String!
locale - String
name - UserName
provider - String!
timezone - String
userName - String!
Example
{
  "active": true,
  "displayName": "xyz789",
  "emails": [UserEmail],
  "groups": [Group],
  "id": "xyz789",
  "locale": "abc123",
  "name": UserName,
  "provider": "abc123",
  "timezone": "abc123",
  "userName": "abc123"
}

UserEmail

Fields
Field Name Description
primary - Boolean
type - String
value - String
Example
{
  "primary": true,
  "type": "xyz789",
  "value": "abc123"
}

UserName

Fields
Field Name Description
familyName - String
formatted - String
givenName - String
honorificPrefix - String
honorificSuffix - String
middleName - String
Example
{
  "familyName": "xyz789",
  "formatted": "xyz789",
  "givenName": "abc123",
  "honorificPrefix": "xyz789",
  "honorificSuffix": "abc123",
  "middleName": "xyz789"
}

UserOpenHistory

Types
Union Types

Adjustment

LossNotice

Policy

Example
Adjustment

UserPermissions

Fields
Field Name Description
global - [ResourceActions!]!
zones - [Zone!]!
Example
{
  "global": [ResourceActions],
  "zones": [Zone]
}

ZeroAdjustmentUnallocatedPolicyLinesInput

Fields
Input Field Description
id - String! The id of the Adjustment
policyId - String! The id of the Policy
Example
{
  "id": "xyz789",
  "policyId": "abc123"
}

ZeroAdjustmentUnallocatedRetainedLinesInput

Fields
Input Field Description
id - String! The id of the Adjustment
Example
{"id": "abc123"}

Zone

Fields
Field Name Description
description - String (Optional) The description for the Zone
id - String! The id of the Zone
name - String! The name of the Zone
parentId - String (Optional) The id of the parent Zone
paths - ZonePaths
resources - [ResourceActions]
Example
{
  "description": "abc123",
  "id": "xyz789",
  "name": "abc123",
  "parentId": "abc123",
  "paths": ZonePaths,
  "resources": [ResourceActions]
}

ZonePaths

Fields
Field Name Description
id - [String!]!
name - [String!]!
Example
{
  "id": ["abc123"],
  "name": ["abc123"]
}