Yup

Results 66 comments of Yup

Actually the correct way for this is `{{ include('template.html.twig', sandboxed = true) }}` I think it can be closed.

I have the same error, but even after manual DROP error still persists.

That's why I made my own solution for translations. https://github.com/Warxcell/EntityTranslationsBundle

> Hi @Warxcell, I checked out the PR and took the liberty of making a few changes. > > In #1263 I was able to make the breaking change to...

> Hello!! > > I face the same issue and I understand why. This being said it is much harder to "unmatch" a url than to match it. > >...

btw https://github.com/zalando-incubator/graphql-jit have thing called ``` disableLeafSerialization {boolean, default: false} - disables leaf node serializers. The serializers validate the content of the field at runtime so this option should only...

@spawnia another thing that could improve performance is skipping ``` $validationErrors = DocumentValidator::validate($schema, $documentNode, $validationRules); if ($validationErrors !== []) { return $promiseAdapter->createFulfilled( new ExecutionResult(null, $validationErrors) ); } ``` in case...

before ![image](https://github.com/webonyx/graphql-php/assets/3340882/1e9a1366-08b0-4848-b320-54c2b6c69f47) after: ![image](https://github.com/webonyx/graphql-php/assets/3340882/cc3c2809-7feb-45f9-bba6-c7a3a57f0729) basically 100-200ms improvement on one specific query on our side. ``` $cacheItem = $this->queryCache->getItem(md5($op->query)); if ($cacheItem->isHit()) { $documentNode = AST::fromArray($cacheItem->get()); } else { $documentNode = Parser::parse($op->query);...

> I can't share the xdebug cachegrind output but I can leave a screenshot 😅 Hope it's useful: ![image](https://private-user-images.githubusercontent.com/87493/290793383-55bc2616-2f43-4093-97ae-3f1517cf7fe4.png?jwt=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiJnaXRodWIuY29tIiwiYXVkIjoicmF3LmdpdGh1YnVzZXJjb250ZW50LmNvbSIsImtleSI6ImtleTEiLCJleHAiOjE3MDI2NzMyNzUsIm5iZiI6MTcwMjY3Mjk3NSwicGF0aCI6Ii84NzQ5My8yOTA3OTMzODMtNTViYzI2MTYtMmY0My00MDkzLTk3YWUtM2YxNTE3Y2Y3ZmU0LnBuZz9YLUFtei1BbGdvcml0aG09QVdTNC1ITUFDLVNIQTI1NiZYLUFtei1DcmVkZW50aWFsPUFLSUFJV05KWUFYNENTVkVINTNBJTJGMjAyMzEyMTUlMkZ1cy1lYXN0LTElMkZzMyUyRmF3czRfcmVxdWVzdCZYLUFtei1EYXRlPTIwMjMxMjE1VDIwNDI1NVomWC1BbXotRXhwaXJlcz0zMDAmWC1BbXotU2lnbmF0dXJlPWU4ZDM3ZTY5NjIwOTlhNDk4MmNjZDU2OGVkY2NkZDJkMzRjMjAzZmVkNTkxYmY4NjBhZjFkOTQ2ZGNlZjJiZTImWC1BbXotU2lnbmVkSGVhZGVycz1ob3N0JmFjdG9yX2lkPTAma2V5X2lkPTAmcmVwb19pZD0wIn0.RdWYmQKEbgePUecAA7aACI3po98Bn_SHAQt93mGzVeU) > > Of course Laravel / Eloquent also appears a LOT...