diff --git a/CHANGELOG.rst b/CHANGELOG.rst
index 113e1096714aa7fd43d779a983c97380f13de169..524cc0485fbde6a6ac197cdba998eaa67167b428 100644
--- a/CHANGELOG.rst
+++ b/CHANGELOG.rst
@@ -6,6 +6,14 @@ All notable changes to this project will be documented in this file.
 The format is based on `Keep a Changelog`_,
 and this project adheres to `Semantic Versioning`_.
 
+Unreleased
+----------
+
+Changed
+~~~~~~~
+
+* Change default network policy of the Apollo client to `cache-and-network`.
+
 `3.0b1` - 2023-02-27
 --------------------
 
diff --git a/aleksis/core/frontend/app/apollo.js b/aleksis/core/frontend/app/apollo.js
index c14ba118d0c4d14558f23a747a98b207067ff7b2..1b23d43fb32d402c7e802a7e892e16f70545aa0e 100644
--- a/aleksis/core/frontend/app/apollo.js
+++ b/aleksis/core/frontend/app/apollo.js
@@ -90,6 +90,7 @@ const apolloOpts = {
           vm.$root.offline = true;
         }
       },
+      fetchPolicy: "cache-and-network",
     },
   },
 };