Skip to content

Commit

Permalink
[ksqlDB.RestApi.Client]: pull queries doc
Browse files Browse the repository at this point in the history
  • Loading branch information
tomasfabian committed Jan 4, 2024
1 parent 44251b8 commit 2484fac
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion docs/pull_queries.md
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,9 @@ context.CreatePullQuery<Tweet>()
.Take(2);
```
```SQL
SELECT * from tweets LIMIT 2;
SELECT *
FROM tweets
LIMIT 2;
```

### GetManyAsync
Expand Down

0 comments on commit 2484fac

Please sign in to comment.