UNPKG

@medusajs/utils

Version:

Medusa utilities functions shared by Medusa core and Modules

86 lines 2.25 kB
import { RemoteQueryObjectConfig, RemoteQueryObjectFromStringResult } from "@medusajs/types"; /** * Convert a string fields array to a remote query object * @param config - The configuration object * * @example * const fields = [ * "id", * "created_at", * "updated_at", * "deleted_at", * "url", * "metadata", * "tags.id", * "tags.created_at", * "tags.updated_at", * "tags.deleted_at", * "tags.value", * "options.id", * "options.created_at", * "options.updated_at", * "options.deleted_at", * "options.title", * "options.product_id", * "options.metadata", * "options.values.id", * "options.values.created_at", * "options.values.updated_at", * "options.values.deleted_at", * "options.values.value", * "options.values.option_id", * "options.values.variant_id", * "options.values.metadata", * ] * * const remoteQueryObject = remoteQueryObjectFromString({ * entryPoint: "product", * variables: {}, * fields, * }) * * console.log(remoteQueryObject) * // { * // product: { * // __args: {}, * // fields: [ * // "id", * // "created_at", * // "updated_at", * // "deleted_at", * // "url", * // "metadata", * // ], * // * // tags: { * // fields: ["id", "created_at", "updated_at", "deleted_at", "value"], * // }, * // * // options: { * // fields: [ * // "id", * // "created_at", * // "updated_at", * // "deleted_at", * // "title", * // "product_id", * // "metadata", * // ], * // values: { * // fields: [ * // "id", * // "created_at", * // "updated_at", * // "deleted_at", * // "value", * // "option_id", * // "variant_id", * // "metadata", * // ], * // }, * // }, * // }, * // } */ export declare function remoteQueryObjectFromString<const TEntry extends string, const TConfig extends RemoteQueryObjectConfig<TEntry>>(config: TConfig | RemoteQueryObjectConfig<TEntry>): RemoteQueryObjectFromStringResult<TConfig>; //# sourceMappingURL=remote-query-object-from-string.d.ts.map