UNPKG

relay-runtime

Version:

A core runtime for building GraphQL-driven applications.

37 lines (30 loc) 833 B
/** * Copyright (c) Meta Platforms, Inc. and affiliates. * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. * * @flow strict * @format * @oncall relay */ 'use strict'; const RelayRecordState = { /** * Record exists (either fetched from the server or produced by a local, * optimistic update). */ EXISTENT: 'EXISTENT', /** * Record is known not to exist (either as the result of a mutation, or * because the server returned `null` when queried for the record). */ NONEXISTENT: 'NONEXISTENT', /** * Record State is unknown because it has not yet been fetched from the * server. */ UNKNOWN: 'UNKNOWN', } as const; export type RecordState = $Keys<typeof RelayRecordState>; module.exports = RelayRecordState;