Module: client/queries/formManagement
Variables
formsQuery
• Const
formsQuery: QueryKeyFactoryResult
<"forms"
, InvalidSchema$1
<{ detail
: (formioToken
: string
, formId
: string
) => { queryFn
: () => Promise
<null
| Form
> ; queryKey
: [string
] } ; list
: (__namedParameters
: { filters?
: { comparedValue
: string
; fieldPath
: string
; operation
: "contains"
}[] ; formioToken
: string
; pagination
: { limit
: number
; offset
: number
} ; sort?
: { field
: keyof FormSchema | "_id"
; order
: "asc"
| "desc"
} ; tags?
: string
[] }) => { queryFn
: () => Promise
<{ data
: Form
[] ; totalCount
: number
}> ; queryKey
: [string
, undefined
| string
[], { limit
: number
; offset
: number
}, undefined
| { field
: keyof FormSchema | "_id"
; order
: "asc"
| "desc"
}, undefined
| { comparedValue
: string
; fieldPath
: string
; operation
: "contains"
}[]] } ; submissions
: (formId
: string
, __namedParameters
: { filters?
: { comparedValue
: string
; fieldPath
: string
; operation
: "contains"
}[] ; formioToken
: string
; pagination
: { limit
: number
; offset
: number
} ; sort?
: { field
: string
; order
: "asc"
| "desc"
} }) => { queryFn
: () => Promise
<{ data
: Submission
[] ; totalCount
: number
}> ; queryKey
: [string
, string
, { limit
: number
; offset
: number
}, undefined
| { field
: string
; order
: "asc"
| "desc"
}, undefined
| { comparedValue
: string
; fieldPath
: string
; operation
: "contains"
}[]] } }>>