Mark Penner

Results 46 issues of Mark Penner

I'm not actually using Relay, but I'm trying to use the Relay spec to set up pagination, as shown in the [Join-Monster documentation](https://join-monster.readthedocs.io/en/latest/pagination/). They have this: ``` const { connectionType:...

From [these slides](https://www.percona.com/live/17/sites/default/files/slides/SkeemaPerconaLive2017.pdf), one of the use-cases is: > Also support patterns such as “every engineer has their own dev DB on localhost” Which is also a goal for us....

feature request
feedback wanted

We have kind of a strange setup at my company, so I'm not sure if you'll be able to support this use-case, but if you could, that be fantastic! I...

feature request

Often times we want to fetch just a single field from a nested relation. e.g. ``` { clients(limit: 5) { id programs { shortName } } } ``` It would...

👻 Needs Champion
💭 Strawman (RFC 0)

**Question** wiki.js asks me to log in almost every time I visit my website. I'm using username+password. Is there a setting to keep me logged in indefinitely? **Host Info (please...

From what I can gather from the README, this tool should upgrade my `.babelrc` file too, right? I was running babel 6.x, it updated my package.json with dozens of `"@babel/...":...

![](https://mpen.xyz/share/2020/05/phpstorm64_2020-05-19_23-50-12.png) Need to know which to pick 😄 Thanks!

This code: ``` html code { background:black; color:white; display:inline-block; vertical-align:middle } Some text A B C D continues afterward. ``` Does not render correctly: ![selection_022](https://f.cloud.github.com/assets/1112998/703705/0f7c6eca-ddb0-11e2-8a3e-088e7a79318d.png) I'm having a lot of...

layout

I don't always use HTML and my underlying template language with Twig. PhpStorm supports `.js.twig` and other extensions. I tried changing the config option, ``` php 'extension' => 'twig', ```...

I've just switched from barryvdh/laravel-twigbridge to rcrowe/TwigBridge. With @barryvdh 's, I had this filter: ``` php new Twig_SimpleFilter('js', function($data) { if($data instanceof Twig_Markup) $data = (string)$data; return Json::encode($data, JSON_ESCAPE_SCRIPTS); },['is_safe'=>['html']]),...