Navigation
API > API/Runtime > API/Runtime/TypedElementFramework > API/Runtime/TypedElementFramework/IQueryContext
Overloads
| Name | Remarks | Include Path | Unreal Specifiers |
|---|---|---|---|
FQueryResult RunSubquery
(
int32 SubqueryIndex |
Runs a subquery registered with the current query. | Elements/Interfaces/TypedElementQueryStorageInterfaces.h | |
FQueryResult RunSubquery
(
int32 SubqueryIndex, |
Runs the provided callback on a subquery registered with the current query. | Elements/Interfaces/TypedElementQueryStorageInterfaces.h | |
FQueryResult RunSubquery
(
int32 SubqueryIndex, |
Runs the provided callback on a subquery registered with the current query for the exact provided row. | Elements/Interfaces/TypedElementQueryStorageInterfaces.h |
RunSubquery(int32)
Description
Runs a subquery registered with the current query. The subquery index is in the order of registration with the query. Subqueries are executed as part of their parent query and are not scheduled separately.
| Name | RunSubquery |
| Type | function |
| Header File | /Engine/Source/Runtime/TypedElementFramework/Public/Elements/Interfaces/TypedElementQueryStorageInterfaces.h |
| Include Path | #include "Elements/Interfaces/TypedElementQueryStorageInterfaces.h" |
FQueryResult RunSubquery
(
int32 SubqueryIndex
)
RunSubquery(int32, SubqueryCallbackRef)
Description
Runs the provided callback on a subquery registered with the current query. The subquery index is in the order of registration with the query. Subqueries are executed as part of their parent query and are not scheduled separately.
| Name | RunSubquery |
| Type | function |
| Header File | /Engine/Source/Runtime/TypedElementFramework/Public/Elements/Interfaces/TypedElementQueryStorageInterfaces.h |
| Include Path | #include "Elements/Interfaces/TypedElementQueryStorageInterfaces.h" |
FQueryResult RunSubquery
(
int32 SubqueryIndex,
SubqueryCallbackRef Callback
)
RunSubquery(int32, RowHandle, SubqueryCallbackRef)
Description
Runs the provided callback on a subquery registered with the current query for the exact provided row. The subquery index is in the order of registration with the query. If the row handle is in a table that doesn't match the selected subquery the callback will not be called. Check the count in the returned results to determine if the callback was called or not. Subqueries are executed as part of their parent query and are not scheduled separately.
| Name | RunSubquery |
| Type | function |
| Header File | /Engine/Source/Runtime/TypedElementFramework/Public/Elements/Interfaces/TypedElementQueryStorageInterfaces.h |
| Include Path | #include "Elements/Interfaces/TypedElementQueryStorageInterfaces.h" |
FQueryResult RunSubquery
(
int32 SubqueryIndex,
RowHandle Row,
SubqueryCallbackRef Callback
)