rajesh17692
rajesh17692
For this, you can override GraphQL WebserviceController and in that, you can add extra security check-in performSecurityCheck function like below $apiKey = $request->headers->get('X-Api-Key'); $token = $request->headers->get('token'); $userObj = User::getByUserToken($token,1); if...
@pimcoremohit31 I am storing token of user with data when the user trying to log in so with the next request we can compare. token.
@pimcoremohit31 sorry I am using below token generation method Csrf\TokenGenerator\UriSafeTokenGenerator();
No. You can user JWT instead and to validate the token with every request you can create helper function and validate after geting data from user account
For details please look below scenario 1) create a User class 2) create some other class like Store 3) Map user relation in store as one to Many 4) Now...
@weisswurstkanone We should receive all possible columns which are available for type so that with single query we can get all parent and child results for the data.
Also, FIND_IN_SET should be handled to support Advance Many to Many filters where we can pass multiple IDS for this type of relation in the filter