Skip to content

Commit

Permalink
fix: README links
Browse files Browse the repository at this point in the history
  • Loading branch information
fhur committed Apr 17, 2024
1 parent 2036ed2 commit 473dba2
Show file tree
Hide file tree
Showing 4 changed files with 32 additions and 6 deletions.
4 changes: 2 additions & 2 deletions packages/backend/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ queryEngine.execute(query);

## Links

- [Website](https://synthql.github.io/synthql/)
- [Docs](https://synthql.github.io/synthql/docs/getting-started)
- [Website](https://synthql.github.io/SynthQL/)
- [Docs](https://synthql.github.io/SynthQL/docs/getting-started)
- [X/Twitter](https://twitter.com/fernandohur)
- [Github](https://github.com/synthql/synthql)
26 changes: 26 additions & 0 deletions packages/cli/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
# @synthql/backend

The SynthQL backend.

```ts
import { QueryEngine } from "@synthql/backend"

// Initialize the client
const queryEngine = new QueryEngine({...})

// Write your query
const query = from('users')
.columns('id','first_name')
.where({id: {in:[1,2,3]}})
.many()

// Execute the query
queryEngine.execute(query);
```

## Links

- [Website](https://synthql.github.io/SynthQL/)
- [Docs](https://synthql.github.io/SynthQL/docs/getting-started)
- [X/Twitter](https://twitter.com/fernandohur)
- [Github](https://github.com/synthql/synthql)
4 changes: 2 additions & 2 deletions packages/queries/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ const query = from('users').columns('id', 'first_name').where({ id: 1 }).many();

## Links

- [Website](https:/synthqlr.github.io/synthql/)
- [Docs](https://synthql.github.io/synthql/docs/getting-started)
- [Website](https:/synthqlr.github.io/SynthQL/)
- [Docs](https://synthql.github.io/SynthQL/docs/getting-started)
- [X/Twitter](https://twitter.com/fernandohur)
- [Github](https://github.com/synthql/synthql)
4 changes: 2 additions & 2 deletions packages/react/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ useSynthql(query);

## Links

- [Website](https://synthql.github.io/synthql/)
- [Docs](https://synthql.github.io/synthql/docs/getting-started)
- [Website](https://synthql.github.io/SynthQL/)
- [Docs](https://synthql.github.io/SynthQL/docs/getting-started)
- [X/Twitter](https://twitter.com/fernandohur)
- [Github](https://github.com/synthql/synthql)

0 comments on commit 473dba2

Please sign in to comment.