Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: fix doc usage.mdx typo #87

Merged
merged 1 commit into from
Dec 29, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -58,8 +58,8 @@ val tuples = sqlClient
where(table.edition.eq(3))
// highlight-next-line
select(
table.id
table.name
table.id,
table.name,
table.edition
)
}
Expand Down Expand Up @@ -166,8 +166,8 @@ val bookDTOs = sqlClient
.createQuery(Book::class) {
where(table.edition.eq(3))
select(
table.id
table.name
table.id,
table.name,
table.edition
)
}
Expand Down Expand Up @@ -426,4 +426,4 @@ Annotation processor会为每一个实体接口自动生成一个Fetcher类,

- JPA的EntityGraph仅仅控制关联属性,但对象抓取器可以控制任何属性,和GraphQL一样,精确控制到每个属性

- 对于因为自关联属性导致的无限递归结构,对象抓取器支持[递归查询](./recursive)
- 对于因为自关联属性导致的无限递归结构,对象抓取器支持[递归查询](./recursive)
Loading