Kevin Yank

Results 41 issues of Kevin Yank

[Inline fragments](https://graphql.org/learn/queries/#inline-fragments) let you deal with union types in your GraphQL schema, requesting different fields for the different variants that the server returns: ``` hero { name ... on Droid...

I dug up an implementation of radar graphs that was contributed back when g.Raphaël 0.4 was current, and have ported it to Raphaël 2.0 for my own purposes. See the...

Programmers who are new to Elm often don't understand the distinction between types and module, and write `import`s with aliases that simply re-apply the module's name like this: ``` import...

In our codebase, `source-directories` points to some libraries in `node_modules`: ``` "source-directories": [ ".", "../../../../lib/client/modules/ca-ui", "../../../../lib/client/modules/ca-utils", "../../../../node_modules/elm-upgrade-shims/lib-0.19", "../../../../node_modules/@kaizen/component-library/draft", "../../../../node_modules/@kaizen/component-library/components" ], ``` Since #22, elm-analyze doesn't scan files in `node_modules`, which...

The ‘Insert case/of’ special completion is not being offered to me, even though it is enabled in my preferences. Other special completions are working fine. Atom 1.15.0 stable

The [**How do I manage URL from a `Browser.element`?** guide](https://github.com/elm/browser/blob/1.0.0/notes/navigation-in-elements.md#managing-the-url-from-browserelement) contains a bug in the sample code that will prevent browser Back/Forward buttons from working. The `popstate` event listener is...

Intending to install [elm-community/list-extra](https://package.elm-lang.org/packages/elm-community/list-extra/latest), I mistakenly typed: ``` elm install elm-community/elm-list-extra ``` …which refers to the obsolete [elm-community/elm-list-extra](https://github.com/elm-community/elm-list-extra) repo. The error this produced was confusing: ``` -- PROBLEM SOLVING PACKAGE...

Just as in HTML, it’s useful to be able to create a space-separated list of classes to be applied to an SVG element. `Html.Attributes.classList` does this for HTML. For `Svg`,...

We use https://github.com/danethurber/webpack-manifest-plugin to output a JSON manifest of source filenames to output filenames, which our application then uses to write the `` and `` tags, and other references to...

### What did you expect to happen? Can I Use action should work. ### What actually happened? ![CleanShot 2022-06-08 at 15 47 30](https://user-images.githubusercontent.com/89772/172542395-e7e8206d-bd1f-4941-a6e6-c72c33c22beb.png) ### Describe your attempts to resolve the...

bug