Matt Zikherman
Matt Zikherman
I have a use case where I'd like to make a proper connection out of some data, and where the data itself represents edges, rather nodes. Essentially, imagine an API...
The line number and actual error usually don't line up, so you have to guess approximately what happened based on the error, we should improve the backtrace/line numbering. https://cl.ly/1T2U3K103v2U
We have a [newer component](https://github.com/artsy/force/tree/33023a3618d27ed5b9071ec07c23243f2baa3087/components/artwork_brick) used in several places, as well as an [older component](https://github.com/artsy/force/tree/33023a3618d27ed5b9071ec07c23243f2baa3087/components/artwork_item) used in /collect, and a [weirdly old and specific](https://github.com/artsy/force/tree/33023a3618d27ed5b9071ec07c23243f2baa3087/apps/show/components/artwork_item_metaphysics) component used on /show pages. Ideally...
In order to enable non USD auctions, recent PR's in gravity (https://github.com/artsy/gravity/pull/9179 as an example), has added JSON fields to help currency formatting. So, any field relating to bidding that...
It's the year 2020. You use a modern front-end stack of [Relay](https://relay.dev/), [GraphQL](https://graphql.org/), [React](https://reactjs.org/) and [TypeScript](https://www.typescriptlang.org/). You can build an infinite scroll 'feed' type UI totally out of the box...
This will be the first in a series of posts about how we used advanced GraphQL tooling and functionality to better handle errors occurring during query resolution, and better equip...
We have a list of 'must have' configs, and we throw an error if any of them are missing: https://github.com/artsy/metaphysics/blob/33eac8c55c1d0fd811872aaf541133683d4b3101/src/config.js#L75 I this is a cool idea! Rather than fail silently/mysteriously...
We have a `Category` type (https://github.com/artsy/convection/blob/2262bfdecc87a8d7e30f2f144b980d401849eeb3/app/graph/types/category_type.rb#L2) in Convection that is clobbering a local type in MP: https://github.com/artsy/metaphysics/blob/91c249d6a225d5a5094a07237a25c63fb080a446/src/schema/partner.js#L23 This is causing `Market Insights` to be broken in Production. This also is...
This should be able to filter out messages that have no body AND no attachments. Probably should be implemented as a proper param in Impulse -> Radiation.
This field is typed as non-null, but there is no such constraint on the backend that actually enforces that. So, there are a few options: - migrate data + enforce...