Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

support json search #1049

Closed
clysss opened this issue Jan 9, 2025 · 3 comments
Closed

support json search #1049

clysss opened this issue Jan 9, 2025 · 3 comments
Assignees

Comments

@clysss
Copy link
Contributor

clysss commented Jan 9, 2025

hello @mevdschee , Happy new year 2025 !
with posgresql, I've a field name data (character varying) containing a json.
suppose this json is {"xxx":"yyy", "zzz":{"www":"sss", "tags":["one", "two", "three"]}}.
I can write
SELECT * FROM public.xxx
WHERE "data"::jsonb ->'zzz'-> 'tags' @> '"two"';
to have the records having tags=two
I'm using a custom controller. Is there a way to make a call to recordService->_list(
with some parameters to create this SQL call ?

I haven't see anything about json select in json middleware and begin to deep into
https://github.com/mevdschee/php-crud-api/blob/main/src/Tqdev/PhpCrudApi/Database/ConditionsBuilder.php

my goal could be something like
GET /records/your_table?filter=data->zzz->tags,js,two
[in fact I just need in my case [filter =>"data->zzz->tags,js,two"] (or even ""data"::jsonb ->'zzz'-> 'tags',js,two )
or perhaps if its easier "data, js,zzz->tags:two"
js would be a new keyword if needed to allow "fake" colum name ("data->zzz->tags") : what do you think about that ??
Thx

@mevdschee
Copy link
Owner

mevdschee commented Feb 15, 2025

Hi Clysss

what do you think about that ??

My honest opinion? I think storing unstructured data in a RDBMS is silly (especially if you want to search that data).

I have explored this avenue before and if we were targeting only one database system, then this would be feasible. With support for many underlying databases this will be very difficult.

Maybe a workaround for your situation is that you create a view that represents the nested JSON property in a (nullable) column, as reading from views and searching data in views is supported.

Kind regards,

Maurits

@mevdschee mevdschee self-assigned this Feb 15, 2025
@clysss
Copy link
Contributor Author

clysss commented Feb 15, 2025 via email

@mevdschee
Copy link
Owner

For completeness I reference the (reverted) issue: #176

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

2 participants