LF Bittencourt

Results 13 comments of LF Bittencourt

Here's another example: ```js const { validatePayload } = require('@directus/shared/utils'); const payload = { a: 0, b: 0, }; const filter = { _or: [ { _and: [ { a:...

Talk about other frameworks here may be not too polite, but... Can't Phalcon have a simple `sync` method like Laravel has? > You may also use the sync method to...

@prodigga No, you're not. I agree with you :-) My comment is just a potential next step, because there's no need to load your associated entities from database before attach...

Yeah, this combination wouldn't be bad: ``` php function mb_lcfirst($value) { return mb_strtoupper(mb_substr($value, 0, 1)) . mb_substr($value, 1); } ``` BTW: after opening this issue, I've decided to create a...

@samwho Thanks! > What you're wanting to do, return all rows when a search would otherwise return no rows, isn't currently something you can do with Budibase. That was my...

@samwho Just to let you know it's working like a charm now ✨

Thanks! I'll come back here as soon as I have tested it :-)

@lazd It's working smoothly now! About `context` and `wrapper`, I'd do exactly what you did. Looking forward to the merge. A major version to fix #61 as well, maybe? Thanks...

@lazd I see there's some discussion about #61, so this issue could be released as a minor version. There's no relation between the issues and it would be very nice...

For the ones that are struggling with this: some APIs support query params indexing, like `https://domain.com/path?array[0]=1&array[1]=2&array[2]=3`, so keys are unique and you're good to go.