Deianira GraphQL API
Deianira GraphQL API
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
Response
Returns an OffsetPaginatedAdjustmentCompanies!
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
Response
Returns [AdjustmentCostExpensePayment!]!
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
Response
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
Response
Returns [AdjustmentCostExpenseReserve!]!
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
Response
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!]!
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
Response
Returns an OffsetPaginatedAdjustmentFeePayments!
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!]!
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
Response
Returns an OffsetPaginatedAdjustmentFeeReserves!
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
Response
Returns [AdjustmentIndemnityPayment!]!
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
Response
Returns an OffsetPaginatedAdjustmentIndemnityPayments!
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
Response
Returns [AdjustmentIndemnityReserve!]!
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
Response
Returns an OffsetPaginatedAdjustmentIndemnityReserves!
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
Response
Returns an OffsetPaginatedAdjustmentIndividuals!
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!
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!]!
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!
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!
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
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!]!
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!]!
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!]!
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!
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
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!
Arguments
| Name | Description |
|---|---|
data - UpdateAdjustmentAirframeEngineMaintenanceCheckNarrativeInput!
|
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!
Arguments
| Name | Description |
|---|---|
data - UpdateAdjustmentAirframeMaintenanceCheckNarrativeInput!
|
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 |
|---|---|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
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
Example
{"cyclesSinceNew": 987, "hoursSinceNew": 987}
AddAdjustmentAirframeInput
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
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
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
AddAdjustmentManualFlightAerodrome
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
Example
{
"codeShares": ["xyz789"],
"iata": "xyz789",
"icao": "abc123"
}
AddAdjustmentPolicyInput
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
AddLossNoticeAirframeInput
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
AddLossNoticeLabelInput
AddLossNoticeManualFlightAerodrome
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
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
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
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
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
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 |
|---|---|
|
|
|
|
|
|
|
|
Example
"first_party"
AdjustmentAllocationSaveRequirement
Description
Requirement for an Adjustment Allocation to be saved
Values
| Enum Value | Description |
|---|---|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Example
"CHANGED_SINCE_LAST_VERSION"
AdjustmentAllocationType
Values
| Enum Value | Description |
|---|---|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Example
"costs_expenses"
AdjustmentAspect
Description
An aspect of an adjustment
Values
| Enum Value | Description |
|---|---|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
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
Example
{
"addressLine1": "abc123",
"addressLine2": "xyz789",
"country": Country,
"county": "xyz789",
"locality": "xyz789",
"postalCode": "xyz789",
"region": "xyz789",
"streetName": "abc123"
}
AdjustmentCompanyAddressInput
Example
{
"addressLine1": "abc123",
"addressLine2": "abc123",
"countryCode": "xyz789",
"county": "xyz789",
"locality": "abc123",
"postalCode": "xyz789",
"region": "abc123",
"streetName": "xyz789"
}
AdjustmentCompanyPrimaryIndustryCode
AdjustmentCompanyPrimaryIndustryCodeInput
AdjustmentCompanyQueryFilters
Fields
| Input Field | Description |
|---|---|
id - String!
|
The id of the Adjustment |
Example
{"id": "abc123"}
AdjustmentCompanyRegistration
AdjustmentCompanyRegistrationInput
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
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
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
Types
| Union Types |
|---|
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 |
|---|---|
|
|
|
|
|
|
|
|
|
|
|
Example
"creationDate"
AdjustmentQuerySortOrder
Description
The sort order for the adjustments
Values
| Enum Value | Description |
|---|---|
|
|
|
|
|
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
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 |
|---|---|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
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 |
|---|---|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
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
AerodromeType
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
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 |
|---|---|
|
|
|
|
|
|
|
|
Example
"cabincrew"
AircraftFamily
AircraftHullLossCausalFactor
Values
| Enum Value | Description |
|---|---|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Example
"aircraft_avionics_failure"
AircraftManufacturer
AircraftMasterSeries
AircraftModel
AircraftSeries
AircraftTailConfiguration
AircraftType
AircraftTypeDesignator
AircraftWakeTurbulenceCategory
AircraftWingPosition
AircraftWingType
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
AirframeEngineComponent
Description
The component of the engine
Values
| Enum Value | Description |
|---|---|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Example
"carburettor"
AirframeEnginePosition
Description
The position of the engine
Values
| Enum Value | Description |
|---|---|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Example
"apu"
AirframeMaintenanceCheck
Values
| Enum Value | Description |
|---|---|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
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
Example
{
"id": "abc123",
"registration": "xyz789",
"typeDesignator": "xyz789"
}
AirframeRegistration
AirframeStatus
AirframeSystemComponent
Description
The component of the airframe
Values
| Enum Value | Description |
|---|---|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
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 |
|---|---|
|
|
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
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 |
|---|---|
|
|
|
|
|
|
|
|
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 |
|---|---|
|
|
|
|
|
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 |
|---|---|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Example
"AIRCRAFT_CYCLES"
ConstraintPairValue
ConstraintType
Description
The type of Constraint
Values
| Enum Value | Description |
|---|---|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
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 |
|---|---|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Example
"af"
ConvertAdjustmentFlightManualInput
ConvertLossNoticeFlightManualInput
CostExpenseCoverage
Values
| Enum Value | Description |
|---|---|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
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
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 |
|---|---|
|
|
|
|
|
|
|
|
|
|
|
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
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
DeleteRolePermissionInput
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
DenominationInput
DisableRoleInput
Fields
| Input Field | Description |
|---|---|
id - String!
|
The id of the Role |
Example
{"id": "abc123"}
DisableRolePermissionInput
DunsApiAddress
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
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
DunsApiPrimaryIndustryCode
DunsApiRegistrationNumber
EnableRoleInput
Fields
| Input Field | Description |
|---|---|
id - String!
|
The id of the Role |
Example
{"id": "abc123"}
EnableRolePermissionInput
EngineFamily
EngineMaintenanceCheck
Values
| Enum Value | Description |
|---|---|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Example
"borescope_inspection"
EngineMaintenanceCheckLocation
Values
| Enum Value | Description |
|---|---|
|
|
|
|
|
Example
"off_wing"
EngineManufacturer
EngineMasterSeries
EngineModel
EngineSeries
ExchangeRate
FeeAllocation
Values
| Enum Value | Description |
|---|---|
|
|
|
|
|
|
|
|
|
|
|
Example
"correspondent"
FileMetadata
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
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 |
|---|---|
|
|
|
|
|
|
|
|
|
|
|
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 |
|---|---|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Example
"cfit"
FlightPhase
Values
| Enum Value | Description |
|---|---|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Example
"approach_approach"
FlightSource
Description
The source of the flight
Values
| Enum Value | Description |
|---|---|
|
|
|
|
|
Example
"api"
FlightStatus
Description
The flight status
Values
| Enum Value | Description |
|---|---|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Example
"cancelled"
FlightType
Values
| Enum Value | Description |
|---|---|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
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 |
|---|---|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Example
"arial"
Group
IdentityProviderStrategy
Description
IdP strategy
Values
| Enum Value | Description |
|---|---|
|
|
|
|
|
Example
"LOCAL"
IndemnityAllocation
Values
| Enum Value | Description |
|---|---|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Example
"advance_payment"
IndemnityCategory
Values
| Enum Value | Description |
|---|---|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Example
"aircraft_hull"
IndemnityCoverage
Values
| Enum Value | Description |
|---|---|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Example
"aircraft_hull"
IndividualSex
Description
The sex of the Individual
Values
| Enum Value | Description |
|---|---|
|
|
|
|
|
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 |
|---|---|
|
|
|
|
|
Example
"auto"
LeaseStatus
Description
The lease status
Values
| Enum Value | Description |
|---|---|
|
|
|
|
|
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
Example
{
"address": "xyz789",
"country": Country,
"display": "abc123",
"district": "abc123",
"locality": "xyz789",
"neighbourhood": "xyz789",
"place": "abc123",
"postalCode": "abc123",
"regionCode": "xyz789"
}
LocationAddressLocalityInput
Example
{
"address": "xyz789",
"countryCode": "abc123",
"display": "xyz789",
"district": "abc123",
"locality": "abc123",
"neighbourhood": "abc123",
"place": "xyz789",
"postalCode": "xyz789",
"regionCode": "abc123"
}
LocationCoordinates
LocationSpecificity
Description
The specificity of thelocaction
Values
| Enum Value | Description |
|---|---|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Example
"address"
LossCategory
Description
A category of loss
Values
| Enum Value | Description |
|---|---|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
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
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
LossNoticeDateFilter
LossNoticeFlight
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 |
|---|---|
|
|
|
|
|
|
|
|
|
|
|
Example
"creationDate"
LossNoticeQuerySortOrder
Description
The sort order for the loss notices
Values
| Enum Value | Description |
|---|---|
|
|
|
|
|
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 |
|---|---|
|
|
|
|
|
|
|
|
|
|
|
Example
"draft"
MaintenanceCheckReason
Values
| Enum Value | Description |
|---|---|
|
|
|
|
|
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 |
|---|---|
|
|
|
|
|
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
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
Example
{
"count": 123,
"data": [Policy],
"page": 123,
"totalCount": 123,
"totalPages": 123
}
OffsetPaginatedUsers
Example
{
"count": 123,
"data": [User],
"page": 987,
"totalCount": 987,
"totalPages": 123
}
PageNumberPosition
Description
Page Number Position
Values
| Enum Value | Description |
|---|---|
|
|
|
|
|
|
|
|
Example
"center"
PageNumberRepetition
Description
Page Number Repetition
Values
| Enum Value | Description |
|---|---|
|
|
|
|
|
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
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 |
|---|---|
|
|
|
|
|
|
|
|
|
|
|
Example
"create"
PermissionResource
Description
The Resource the Permission applies to
Values
| Enum Value | Description |
|---|---|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Example
"adjustment"
PermissionRoleCondition
Description
The role conditions associated with the Permission
Values
| Enum Value | Description |
|---|---|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Example
"collaborator"
PhysicalDamage
Values
| Enum Value | Description |
|---|---|
|
|
|
|
|
|
|
|
|
|
|
Example
"none"
PilotLicence
Values
| Enum Value | Description |
|---|---|
|
|
|
|
|
|
|
|
|
|
|
Example
"atpl"
PilotMedicalFitness
Values
| Enum Value | Description |
|---|---|
|
|
|
|
|
|
|
|
Example
"fit_to_fly"
PilotRank
Values
| Enum Value | Description |
|---|---|
|
|
|
|
|
|
|
|
|
|
|
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
PolicyLabel
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 |
|---|---|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Example
"capacity"
PolicyLineTag
Description
A tag attached to the Policy line
Values
| Enum Value | Description |
|---|---|
|
|
|
|
|
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 |
|---|---|
|
|
|
|
|
|
|
|
|
|
|
Example
"endDate"
PolicyQuerySortOrder
Description
The sort order for the policies
Values
| Enum Value | Description |
|---|---|
|
|
|
|
|
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 |
|---|---|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Example
"aviation_contingent_hull_all_risk"
ReferenceType
Description
The type of reference
Values
| Enum Value | Description |
|---|---|
|
|
|
|
|
Example
"actor"
RemoveAdjustmentAirframeCrewMemberExperienceInput
RemoveAdjustmentAirframeCrewMemberFlightRoleInput
RemoveAdjustmentAirframeCrewMemberInput
RemoveAdjustmentAirframeCrewMemberWorkloadInput
RemoveAdjustmentAirframeEngineDamageInput
RemoveAdjustmentAirframeEngineInput
RemoveAdjustmentAirframeEngineMaintenanceCheckInput
RemoveAdjustmentAirframeInput
RemoveAdjustmentAirframeMaintenanceCheckInput
RemoveAdjustmentAirframePartDamageInput
RemoveAdjustmentCollaboratorInput
RemoveAdjustmentCompanyInput
RemoveAdjustmentCostExpensePaymentInput
RemoveAdjustmentCostExpenseReserveInput
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
RemoveAdjustmentFeeReserveInput
RemoveAdjustmentFlightDiversionInput
RemoveAdjustmentFlightInput
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
RemoveAdjustmentIndemnityReserveInput
RemoveAdjustmentIndividualInput
RemoveAdjustmentLabelInput
RemoveAdjustmentPolicyInput
RemoveLossNoticeAirframeEngineDamageInput
RemoveLossNoticeAirframeEngineInput
RemoveLossNoticeAirframeInput
RemoveLossNoticeAirframePartDamageInput
RemoveLossNoticeDocumentsInput
Fields
| Input Field | Description |
|---|---|
documentIds - [String!]!
|
|
id - String!
|
Example
{
"documentIds": ["xyz789"],
"id": "xyz789"
}
RemoveLossNoticeFlightDiversionInput
RemoveLossNoticeFlightInput
RemoveLossNoticeImagesInput
Fields
| Input Field | Description |
|---|---|
id - String!
|
|
imageIds - [String!]!
|
Example
{
"id": "abc123",
"imageIds": ["abc123"]
}
RemoveLossNoticeLabelInput
RemoveMarketReferenceInput
RemovePolicyInput
Fields
| Input Field | Description |
|---|---|
id - String!
|
The id of the Policy |
Example
{"id": "xyz789"}
RemovePolicyLabelInput
RemovePolicyMarketCompanyLineInput
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
RemovePolicyMarketWarrantyPolicyInput
RemovePolicyNamedInsuredInput
RemoveStakeholderReferenceInput
Repairability
Values
| Enum Value | Description |
|---|---|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
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 |
|---|---|
|
|
|
|
|
Example
"global"
Runway
Example
{
"displacedThreshold": 123,
"elevation": 987,
"gradient": Decimal,
"id": 987,
"latitude": Decimal,
"length": 123,
"lighting": [RunwayLighting],
"longitude": Decimal,
"name": "abc123",
"surface": [RunwaySurface],
"width": 987
}
RunwayLighting
RunwaySurface
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 |
|---|---|
|
|
|
|
|
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 |
|---|---|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
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
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
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
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
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
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
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
UpdateAdjustmentOwnerInput
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
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
UpdateAdjustmentReportingCurrencyInput
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
UpdateCompanyInput
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
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
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
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
UpdateLossNoticeDocumentMetadataInput
Fields
| Input Field | Description |
|---|---|
documentId - String!
|
|
id - String!
|
|
narrative - JSONObject
|
Example
{
"documentId": "xyz789",
"id": "abc123",
"narrative": {}
}
UpdateLossNoticeFlightAerodromeInput
UpdateLossNoticeFlightFlightNumbersInput
Example
{
"codeShares": ["abc123"],
"flightId": "xyz789",
"iata": "abc123",
"icao": "abc123",
"id": "xyz789"
}
UpdateLossNoticeFlightOperatorInput
UpdateLossNoticeImageMetadataInput
Fields
| Input Field | Description |
|---|---|
caption - String
|
|
id - String!
|
|
imageId - String!
|
|
narrative - JSONObject
|
Example
{
"caption": "abc123",
"id": "abc123",
"imageId": "abc123",
"narrative": {}
}
UpdateLossNoticeLossDateInput
UpdateLossNoticeNarrativeInput
Fields
| Input Field | Description |
|---|---|
id - String!
|
|
narrative - JSONObject!
|
Example
{"id": "abc123", "narrative": {}}
UpdateLossNoticeReportDateInput
UpdateMarketReferenceInput
UpdateOperationInput
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
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
Example
{
"description": "abc123",
"id": "xyz789",
"name": "xyz789"
}
User
Example
{
"active": true,
"displayName": "xyz789",
"emails": [UserEmail],
"groups": [Group],
"id": "xyz789",
"locale": "abc123",
"name": UserName,
"provider": "abc123",
"timezone": "abc123",
"userName": "abc123"
}
UserEmail
UserName
Example
{
"familyName": "xyz789",
"formatted": "xyz789",
"givenName": "abc123",
"honorificPrefix": "xyz789",
"honorificSuffix": "abc123",
"middleName": "xyz789"
}
UserOpenHistory
Types
| Union Types |
|---|
Example
Adjustment
UserPermissions
Fields
| Field Name | Description |
|---|---|
global - [ResourceActions!]!
|
|
zones - [Zone!]!
|
Example
{
"global": [ResourceActions],
"zones": [Zone]
}
ZeroAdjustmentUnallocatedPolicyLinesInput
ZeroAdjustmentUnallocatedRetainedLinesInput
Fields
| Input Field | Description |
|---|---|
id - String!
|
The id of the Adjustment |
Example
{"id": "abc123"}
Zone
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"]
}