Eric Burel

Results 366 comments of Eric Burel

@harryadel What's the state for this PR? I think you solved the reviews comment so I can probably merge? Did you test it recently on one of your app?

Are you up to date on devel? Will check but I indeed forgot same origin scenario in the first implementation. I think it's fixed in a recent commit.

You should have this: ``` const corsOptions = corsWhitelist && corsWhitelist.length ? { origin: function(origin, callback) { if (!origin) callback(null, true); // same origin if (corsWhitelist.indexOf(origin) !== -1) { callback(null,...

I think I've reproduced that in Vulcan Meteor Next Transition, see sample settings: https://github.com/VulcanJS/Vulcan-Starter/blob/33a23bc3c22b6d5d73071d0b7f1c863f01149cc5/sample_settings.json To be investigated by trying to query the Meteor app from itself, eg via graphql playground.

Contribution on Apollo v3 would be muuuch appreciated. If you start something, I would simply suggest releasing a patch version of Vulcan current code before we merge the work, and...

Thanks for opening an issue, a few more question: - does it happen only with userId? - what is the resulting query? Check your browser devtools under the network tab,...

Do you also have the variables of the graphQL query? That's where you can see the "$input" value and check if your filter is indeed there. If it is not...

Tagging @yairtal because he is currently doing awesome work on the datatable. Things are a bit slowed down during summer, as I have more work to do than I expected...

Ok I'll try to check that too then

@SachaG I see a commit related to this in the apiSchema improvements, was it meant to fix this issue?