MCPcopy Create free account
hub / github.com/IQEngine/IQEngine / fetchMeta

Function fetchMeta

client/src/api/metadata/queries.ts:9–18  ·  view source on GitHub ↗
(
  client: MetadataClient,
  type: string,
  account: string,
  container: string,
  filePath: string
)

Source from the content-addressed store, hash-verified

7import { CLIENT_TYPE_API, SmartQueryResult } from '../Models';
8
9export const fetchMeta = async (
10 client: MetadataClient,
11 type: string,
12 account: string,
13 container: string,
14 filePath: string
15) => {
16 const response = await client.getMeta(account, container, filePath);
17 return response;
18};
19
20const updateDataSourceMeta = async (
21 client: MetadataClient,

Callers 1

getMetaFunction · 0.85

Calls 1

getMetaMethod · 0.65

Tested by

no test coverage detected