gdub01
AEAsh Elixir
•Created by gdub01 on 9/20/2023 in #support
Fragment with multiple 'from' items.
I'm trying to implement search similar to: https://leandronsp.com/a-powerful-full-text-search-in-postgresql-in-less-than-20-lines where the query looks like this:
I think I would write a fragment like:
on the read action.
However for the
FROM
side of things, do you think those items should be in a custom calculation?
I had tried:
but get this:
which makes sense but I"m wondering how to make them work together.97 replies
AEAsh Elixir
•Created by gdub01 on 5/10/2023 in #support
Association not working. Is 'property' a reserved name?
I am trying to associate one resource with another. This works well for most resources I have. However there's this one resource called 'Property' that I can' get to associate with any other resource.
If you see this code after submitting a form:
You'll notice I'm submitting
property_id
in params
. However it is not in the attributes
section from the source. Not sure why that is.
I have:
and
So I can associate accounts and clients, but not properties using the same-ish code. Just wondering if I may need to call my Property resource something else?
The form submit shows there's errors, but does't say what the actual errors are. So wondering if it's kind of an edge case?7 replies