Skip to content

Instantly share code, notes, and snippets.

View m-muhsin's full-sized avatar
🎯
Focusing on React and WordPress

Muhammad Muhsin m-muhsin

🎯
Focusing on React and WordPress
View GitHub Profile
@kadamwhite
kadamwhite / efficient-api-resource-fetch-demo.js
Last active February 19, 2023 05:56
Example of how to compose multiple API requests to efficiently fetch related resources.
/**
* WP Post object. Only properties needed by the code are included.
*
* @typedef {object} WPPost
* @property {number} id ID of post.
* @property {number} author Post author ID.
* @property {number[]} categories IDs of associated categories.
* @property {number[]} tags IDs of associated tags.
* @property {number} featured_media ID of featured image.
*/