Commit Graph

754 Commits

Author SHA1 Message Date
dependabot[bot]
a341a91f4c build(deps): bump github.com/mattn/go-sqlite3 from 1.14.3 to 1.14.4 (#820)
Bumps [github.com/mattn/go-sqlite3](https://github.com/mattn/go-sqlite3) from 1.14.3 to 1.14.4.
- [Release notes](https://github.com/mattn/go-sqlite3/releases)
- [Commits](https://github.com/mattn/go-sqlite3/compare/v1.14.3...v1.14.4)

Signed-off-by: dependabot[bot] <support@github.com>

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2020-10-05 09:49:07 +03:00
Ariel Mashraki
5d2d2757a8 entc/gen: allow passing client-fields from multiple templates (#819) 2020-10-04 22:19:58 +03:00
Roger Ng
69a9122162 doc: add rune length validator example (#814)
* doc: add rune length validator example

* doc: update reusable validator

Co-authored-by: Ariel Mashraki <7413593+a8m@users.noreply.github.com>

* doc: fix missing code section end

Co-authored-by: Ariel Mashraki <7413593+a8m@users.noreply.github.com>
2020-10-04 21:10:17 +03:00
Ariel Mashraki
f548d8aacc doc: document the NodeType option for Node API (#817) 2020-10-04 18:03:07 +03:00
Alex Snast
cd0a79e821 sql/builder: expand limit / offset into query instead of args (#816) 2020-10-04 13:13:56 +03:00
Ariel Mashraki
d0a175f508 entc/gen: don't write assets on template failures (#815)
Calling {{ fail "error" }} from external template
should terminate the execution without local changes.
2020-10-04 12:07:55 +03:00
Ariel Mashraki
1b5f51b827 schema: shared annotation interface for schema objects (#813) 2020-10-03 16:51:00 +03:00
dependabot[bot]
a56b3b24d0 build(deps): bump actions/setup-node from v2.1.1 to v2.1.2 (#812)
Bumps [actions/setup-node](https://github.com/actions/setup-node) from v2.1.1 to v2.1.2.
- [Release notes](https://github.com/actions/setup-node/releases)
- [Commits](https://github.com/actions/setup-node/compare/v2.1.1...c6fd00ceb9747fb23ffdf72987450a2664414867)

Signed-off-by: dependabot[bot] <support@github.com>

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2020-10-02 09:38:12 +03:00
Ariel Mashraki
f9fcceb45a .github/ci: bump go versions (#810) 2020-10-01 20:08:56 +03:00
Ariel Mashraki
9d3a621eb8 dialect/sql: minor comments fixes 2020-10-01 20:07:16 +03:00
maxilozoz
21c2b3b467 dialect/sql: add left/right join support for selector builder 2020-10-01 20:03:45 +03:00
Ariel Mashraki
83ac7bdbae doc/graphql: add more info regarding fields-collections (#807)
Closed #806
2020-09-30 13:04:07 +03:00
Ariel Mashraki
6cf2271c1b entc/gen: initial version for feature-flags (#803) 2020-09-29 16:22:50 +03:00
Ariel Mashraki
f9be692353 doc: add NotEmpty to string validators (#802) 2020-09-28 21:02:23 +03:00
Ariel Mashraki
f93dffcf10 doc: remove entc command from getting-started (#798) 2020-09-25 10:35:59 +03:00
Ariel Mashraki
142773b73d dialect/sqlscan: support scanning []uint8 type (#797)
Fixed #796
2020-09-24 11:13:23 +03:00
Ariel Mashraki
47fef27bc6 doc/graphql: gofmt imports in entc example (#795) 2020-09-23 13:45:09 +03:00
Ariel Mashraki
49101d7d05 entc/gen: change eager-loading empty values (#791)
When loading relations (using edger-loading) and there are no changes,
the response should be an empty slice (and not nil). Similar to the
way we handle simple queries (e.g. All()).

Closed #790
2020-09-22 20:22:30 +03:00
Ariel Mashraki
ae30bc192a doc: update readme summary v0.4.3 2020-09-21 16:07:47 +03:00
Ariel Mashraki
2b78d1d9af doc: add more info to getting-started summary (#787) 2020-09-21 15:59:23 +03:00
Ariel Mashraki
a7bb5346a4 doc: add uuid to schema fields (#786) 2020-09-21 13:08:33 +03:00
Ariel Mashraki
dc2645e2d5 doc: add page for gqlgen integration (#776) 2020-09-17 17:14:35 +03:00
Ariel Mashraki
38e769465c entc/gen: import external packages in runtime package (#775)
Closed #773
2020-09-17 12:00:02 +03:00
Ariel Mashraki
17abe2d60f entc/gen: less sophisticated naming logic (#774)
Closed #772
2020-09-17 09:19:55 +03:00
Ariel Mashraki
235973cc2d entc/gen: merge all templates to global 2020-09-15 16:31:29 +03:00
Ariel Mashraki
c6f9d25d8e doc: update examples for custom templates 2020-09-15 16:31:29 +03:00
Ariel Mashraki
e26e99b643 entc/gen: improve the api for custom templates 2020-09-15 16:31:29 +03:00
Alex Snast
bd4d2a553c dialect/sql: export conn type (#767) 2020-09-15 16:17:43 +03:00
Ariel Mashraki
2c0d7e5a42 dialect/sql/sqljson: add all predicates for length (#764) 2020-09-15 12:38:36 +03:00
Ariel Mashraki
3578d73a8f dialect/sql/sqljson: add length predicate (#763) 2020-09-15 11:53:54 +03:00
Ciaran Liedeman
54774960b2 entc/gen: add template for creating custom predicates (#758)
* Custom Predicates

* Update entc/integration/template/ent/template/where.tmpl

Co-authored-by: Ariel Mashraki <7413593+a8m@users.noreply.github.com>


Co-authored-by: Ariel Mashraki <7413593+a8m@users.noreply.github.com>
2020-09-14 15:41:48 +03:00
Ariel Mashraki
3cb7824561 json predicates (#760)
* dialect/sql/sqljson: cast postgres non-string values

* entc/integration: test json predicates
2020-09-14 12:37:57 +03:00
dependabot[bot]
665b1ca7c4 build(deps): bump github.com/mattn/go-sqlite3 from 1.14.2 to 1.14.3 (#759)
Bumps [github.com/mattn/go-sqlite3](https://github.com/mattn/go-sqlite3) from 1.14.2 to 1.14.3.
- [Release notes](https://github.com/mattn/go-sqlite3/releases)
- [Commits](https://github.com/mattn/go-sqlite3/compare/v1.14.2...v1.14.3)

Signed-off-by: dependabot[bot] <support@github.com>

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2020-09-14 10:08:20 +03:00
Ariel Mashraki
cbff065b51 dialect/sql/sqljson: add {lt,lte} to predicates (#757) 2020-09-13 16:12:37 +03:00
Ariel Mashraki
690e9cd402 dialect/sql/sqljson: add {neq,gt,gte} to predicates (#756) 2020-09-13 15:25:02 +03:00
Ariel Mashraki
98bc30d618 doc: document ordering checks for column names 2020-09-13 14:01:44 +03:00
Ariel Mashraki
e552399bf3 doc: add fb privacy and terms of use (#755) 2020-09-13 13:23:52 +03:00
Ariel Mashraki
d16f0abcc1 entc/gen: document fixture option default value (#754) 2020-09-13 11:39:46 +03:00
Ariel Mashraki
1348df349f dialect/sql/schema: disable fixture in default migration (#753) 2020-09-13 11:13:02 +03:00
Kevin Pierce
46df885752 entc/gen: fix gen for type abbreviating to id (#750)
* cmd/ent: fix gen for type abbreviating to id

* Adding genc output changes to tests, examples
2020-09-12 09:47:39 +03:00
Ariel Mashraki
4cb544c8d0 entc/gen: fix naming conflict for builder fields
Closed #747
2020-09-12 01:58:07 +03:00
Ariel Mashraki
1dc90db3a4 entc/gen: add fields checks for groupfunc 2020-09-10 22:53:25 +03:00
Ariel Mashraki
6a7a5ef439 entc/gen: add fields checks for orderfuncs 2020-09-10 22:53:25 +03:00
Ariel Mashraki
9743213860 dialect/sql/sqlgraph: catch selector errors before query execution 2020-09-10 22:53:25 +03:00
Ariel Mashraki
09be472be8 dialect/sql: add option for adding and getting error from builders 2020-09-10 22:53:25 +03:00
Ariel Mashraki
8b8744022e entc/gen: add column-check for selection and grouping (#744) 2020-09-09 12:27:28 +03:00
Ariel Mashraki
d16e78e686 dialect/sql: add godoc regarding the dialect/sql package (#745) 2020-09-09 12:25:17 +03:00
Ariel Mashraki
b4b4fa95d7 entc/gen: restructure hooks execution (#741)
Closed #739
2020-09-09 10:41:17 +03:00
Ariel Mashraki
3a2c897143 integration: add example for clear/remove and add edges (#738) 2020-09-08 12:05:43 +03:00
Ariel Mashraki
ce48ab99b8 dialect/sql/sqljson: move json predicates to a package (#735) 2020-09-07 21:22:12 +03:00