Ondratra

Results 23 issues of Ondratra

The following input schema: ``` type Book { library: Library! ... } type Library @entity { books: [Book!]! @derivedFrom(field: "library") ... } ``` incorrectly generates property as optional in `library.model.d.ts`:...

bug
low-prio

Variants can't be initialized via the constructor and their properties must be set after the object creation. Add the same possibility to initialize variants in the constructor the same way...

enhancement
estimate-3h
low-prio

# Overview Here we are attempting to keep an ongoing list of problems currently identified in Hydra, including how those problems impact other Atlas products. :x: means product is not...

low-prio

There is a general lack of in-code commentaries in Hydra packages. For some parts, it's hard to understand the reasoning behind the mechanism that brings unnecessary burden, especially when refactoring...

documentation
low-prio

Running `yarn lint` produces over 100 warnings. Fix the warnings and/or update lint settings to pass linting without problems.

low-prio

When using `db.get` provided by `@dzlzv/hydra-common`'s `DatabaseManager` like this: ``` // input schema type Video @entity { channel: Channel license: License ... } // db.get in mappings const video =...

medium-prio-feature
low-prio

It would by handy if input schema could contain default values definitions. ``` type MyEntity @entity { myProperty: String! @default("myValue") } ``` This could be translated to something like in...

enhancement
good first issue
medium-prio-feature
hydra-cli
low-prio

There is no way how to create a list of enums. The following input schema will generate uncompilable code: ``` enum ChannelActionPermission { UpdateChannelMetadata ManageNonVideoChannelAssets ManageChannelCollaborators UpdateVideoMetadata AddVideo ManageVideoAssets DeleteChannel...

qn-hydra-board
low-prio

It seems that we can't include one entity property in multiple fulltext searches at the moment. An example scenario when this is needed is if we want to have one...

enhancement
qn-hydra-board
med-prio
low-prio

Currently, queries searching text fields have limited capabilities. The following query finds records that have their text **exactly** `test`, but doesn't find records that contain the text as a substring...

bug
enhancement
estimate-9h
qn-hydra-board
med-prio