Optional
apolloOptional
defaultOptional
defaultOptional
defaultOptional
defaultOptional
deleteOptional
filesOptional
handleOptional
linkId: numberOptional
token: stringOptional
insertOptional
linkOptional
linksOptional
returningOptional
selectOptional
selectorsOptional
tableOptional
tokenOptional
unsafeOptional
updateOptional
data?: LL[]Optional
error?: anyOptional
valuesStatic
Optional
resolveOptional
options: WriteOptions<TTable>Rest
...path: DeepClientPathItem[]number
Thows error if id is not found. You can set last argument true, for disable throwing error.
Rest
...path: DeepClientPathItem[]This function fetches the corresponding IDs from the Deep for each specified path.
Rest
...paths: [DeepClientStartItem, ...DeepClientPathItem[]][]An array of [start, ...path] tuples. Each tuple specifies a path to a link, where 'start' is the package name or id and ...path further specifies the path to the id using Contain link values (names).
ids
Will throw an error if the id retrieval fails in this.id()
function.
const ids = await deep.ids([
['@deep-foundation/core', 'Package'],
['@deep-foundation/core', 'PackageVersion']
]);
// Outputs
// {
// "@deep-foundation/core": {
// "Package": 2,
// "PackageVersion": 46
// }
// }
Optional
options: WriteOptions<TTable>Optional
options: ReadOptions<TTable>deep.subscribe
Optional
options: ReadOptions<TTable>deep.subscribe({ up: { link_id: 380 } }).subscribe({ next: (links) => {}, error: (err) => {} });
Optional
options: WriteOptions<TTable>Generated using TypeDoc
Find id of link by packageName/id as first argument, and Contain value (name) as path items.