relay-runtime
Version:
A core runtime for building GraphQL-driven applications.
36 lines (30 loc) • 821 B
Flow
/**
* 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-local
* @format
* @oncall relay
*/
;
import type {DataIDSet} from './RelayStoreTypes';
const ITERATOR_KEY = Symbol.iterator;
function hasOverlappingIDs(
seenRecords: DataIDSet,
updatedRecordIDs: DataIDSet,
): boolean {
// $FlowFixMe[incompatible-use]: Set is an iterable type, accessing its iterator is allowed.
const iterator = seenRecords[ITERATOR_KEY]();
let next = iterator.next();
while (!next.done) {
const key = next.value;
if (updatedRecordIDs.has(key)) {
return true;
}
next = iterator.next();
}
return false;
}
module.exports = hasOverlappingIDs;