GraphQL
An API style where the client sends a query describing exactly which fields it wants back.
Different from REST: in REST you call /users/42 and get all fields whether you need them or not. In GraphQL you say "give me the name and three latest posts for user 42" and get exactly that.
Created by Facebook in 2015. Good for mobile where bandwidth is expensive; overkill for simple CRUD APIs.