Skip to main content

3 posts tagged with "Backend"

Articles about backend services and integration

View All Tags

AWS AppSync with React Native

· 14 min read
Full Stack Developer
Last updated on March 27, 2023

app sync

AWS Amplify is a framework that lets us develop a web or mobile application quickly. In this tutorial, we are going to continue to learn how to perform CRUD operations with the database by using GraphQL mutations. AWS Amplify has a complete toolchain wiring and managing APIs with GraphQL. The API we will be creating in this tutorial is a GraphQL API using AWS AppSync (a managed GraphQL service) and the database will be Amazon DynamoDB (a NoSQL database).

Integrating WordPress REST API with React Native

· 5 min read
Full Stack Developer
Last updated on May 18, 2026

WordPress exposes a REST API that React Native apps can use for blog readers, news apps, documentation hubs, content-heavy ecommerce apps, and publisher experiences. The API is useful out of the box for public posts, pages, categories, tags, users, media, and custom content exposed by plugins such as Advanced Custom Fields.

The production challenge is not fetching one post. It is handling pagination, HTML content, media URLs, caching, empty states, authentication boundaries, and safe write operations without leaking WordPress credentials into the mobile app.

wordpress rest api react native