BrowserQL
Publisher: Christopher MillerThemes in package: 2
Advanced BrowserQL language support with intelligent autocomplete, syntax highlighting, hover documentation, and 400+ professional code snippets for web automation
Advanced BrowserQL language support with intelligent autocomplete, syntax highlighting, hover documentation, and 400+ professional code snippets for web automation
Full workbench mockup using this variant's colors and tokenColors.
Loading...
Workbench UI color keys from the theme JSON colors map.
TextMate scopes and font styles (syntax highlighting rules).
| scope | foreground | fontStyle |
|---|---|---|
| entity.name.function.browserql | #DCDCAA | bold |
| keyword.control.browserql | #569CD6 | bold |
| variable.parameter.browserql | #9CDCFE | — |
| variable.other.browserql | #4FC1FF | — |
| entity.alias.browserql | #C586C0 | bold |
| constant.language.browserql | #4EC9B0 | — |
| string.quoted.double.browserql, string.quoted.single.browserql | #CE9178 | — |
| constant.character.escape.browserql | #D7BA7D | — |
| constant.numeric.decimal.browserql | #B5CEA8 | — |
| comment.line.number-sign.browserql | #6A9955 | italic |
| punctuation.definition.arguments.begin.browserql, punctuation.definition.arguments.end.browserql | #FFD700 | — |
| punctuation.definition.block.begin.browserql, punctuation.definition.block.end.browserql | #FF6B6B | — |
| punctuation.separator.key-value.browserql, punctuation.separator.parameters.browserql | #D4D4D4 | — |
export interface User {
id: string;
name: string;
role: "admin" | "member";
tags: string[];
}
/**
* Fetch user data by ID
* @param id
* @returns User object or null if ID is invalid
*/
export async function fetchUser(id: string): Promise<User | null> {
if (!id) {
return null;
}
const response = await fetch(`/api/users/${id}`, {
method: "GET",
headers: { Accept: "application/json" },
});
if (!response.ok) {
throw new Error(`HTTP ${response.status}`);
}
return (await response.json()) as User;
}
function greet(user: User): string {
// Simple greeting function that uses the user's name
return `Hello, ${user.name}!`;
}