Variable ReadQueryResponseConst
ReadQueryResponse: ZodObject<
{
data: ZodObject<
{
_created: ZodISODateTime;
_id: ZodUUID;
_updated: ZodISODateTime;
collection: ZodUUID;
name: ZodString;
owner: $ZodBranded<ZodString, "Did">;
pipeline: ZodArray<ZodRecord<ZodString, ZodUnknown>>;
variables: ZodRecord<
ZodString,
ZodObject<
{
description: ZodOptional<ZodString>;
path: ZodPipe<
ZodPipe<ZodString, ZodTransform<(...) | (...), string>>,
ZodTransform<string, null | RegExpExecArray>,
>;
},
$strip,
>,
>;
},
$strip,
>;
},
$strip,
> = ...
Read query response.