You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/rest/api/Query.md
+72-1Lines changed: 72 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -24,7 +24,7 @@ the same high performance and referential equality guarantees expected of Reacti
24
24
25
25
[Schema](./schema.md) used to retrieve/denormalize data from the Reactive Data Client cache.
26
26
This accepts any [Queryable](/rest/api/schema#queryable) schema: [Entity](./Entity.md), [All](./All.md), [Collection](./Collection.md), [Query](./Query.md),
27
-
and [Union](./Union.md).
27
+
[Union](./Union.md), and [Object](./Object.md) schemas for joining multiple entities.
28
28
29
29
### process(entries, ...args) {#process}
30
30
@@ -205,6 +205,77 @@ render(<TodosPage />);
205
205
206
206
</HooksPlayground>
207
207
208
+
### Object Schema Joins {#object-schema-joins}
209
+
210
+
`Query` can take [Object Schemas](/rest/api/Object), enabling joins across multiple entity types. This allows you to combine data from different entities in a single query.
0 commit comments