fatcousin
search
⌘
K
→
jump to any tool — keyboard-first launcher.
tools
→
browse every utility in one place.
manifesto
→
why fatcousin exists — local-first, no uploads.
install
→
save this toolset to your device — works offline.
search
⌘
K
→
jump to any tool — keyboard-first launcher.
←
home
g
r
a
p
h
q
l
p
l
a
y
g
r
o
u
n
d
paste a schema · write queries · get mock results · no server · no network · runs locally
[
schema (sdl)
]
type Query { user(id: ID!): User users(limit: Int): [User!]! post(id: ID!): Post posts(authorId: ID): [Post!]! } type User { id: ID! name: String! email: String! age: Int active: Boolean! posts: [Post!]! } type Post { id: ID! title: String! body: String! published: Boolean! author: User! tags: [String!]! createdAt: DateTime } scalar DateTime
[
query
]
snippets:
users query
single user
posts + author
query { users(limit: 3) { id name email active posts { id title tags } } }
[
▶ run query
]
ready
local
verify
→