quick icon indicating copy to clipboard operation
quick copied to clipboard

A ColdBox ORM Engine

Results 85 quick issues
Sort by recently updated
recently updated
newest added

In the [docs](https://quick.ortusbooks.com/guide/getting-started/retrieving-entities), it states you can retrieve entities through a relationship definition. However, it only seems to work with some entity getters like `first()`, `get()`, etc. If you try...

Constraints that are applied through a `hasMany` are not applied when that hasMany is used as part of a `hasManyThrough`. Minimal repro as follows. ``` component /*Foo*/ extends="quick.models.BaseEntity" accessors=true {...

Currently there are no way to see the old data of the entity in the `preUpdate` event. We need this feature in order to audit changes to some entities. PR...

When hydrating an entity from a cache, we stash a couple values in a non-persistent struct on the top level of the entity. This throws an error in 4.2.3 in...

`doesntHave` currently creates a `WHERE NOT EXISTS` sub-select on a to-one relationship that looks like this: ``` SELECT * FROM [myTable] WHERE NOT EXISTS (SELECT 1 FROM [myOtherTable] WHERE ([myOtherTable].[id]...

difficulty: medium
contributions: up for grabs
type: bug

Please see: https://github.com/akitogo/quicktest ``` getInstance("user") .with("usergroup.permission.extendedpermission") .has("usergroup.permission.extendedpermission") ``` and I use has, it works with two like `has("usergroup.permission")` but as soon I have three (see above) I get (bearbeitet) an...

type: bug

Suppose I have a Quick result set where one of the properties is derived from a sub-query. If I attempt to paginate and order that result set by the sub-query...

type: bug

Given an entity: ``` component { property name="groupId" column="aliased_group_id"; property name="memberId" column="aliased_member_id"; variables._key = [ "aliased_group_id", "aliased_member_id" ]; this.memento = { "defaultIncludes": [ "groupId", "memberId" ] }; } ``` It...

type: bug

We had an entity with the following scope in Quick 4: ``` q.whereHas( "child", ( q ) => q.whereIn( "familyID", ( q ) => { q.from( "family_parents" ) .where( "clientID",...

type: bug

quick v6.2.1 This seems to occur using either retrieveQuery() or asQuery(). ``` getInstance( "X" ) .whereValue( 1 ) .asQuery() .update( { 'v' : now().add( 'ww', 1 ) } ); ```...

type: bug