DEV Community

Discussion on: How do you put data for other people to use?

Collapse
 
brandinchiu profile image
Brandin Chiu

If the data doesn't need to be filtered, paged, or sorted, simply host it as a raw file.

If you need some of the above things but don't want to do much, graphql is a great option.

If you need to put functionality in front of the data (perform arithmetic, generate new data, etc), then you'll want to build a full api, which may or may not include graphql