From d96ab668812b92a87ce531f2c6c02f21a761eb33 Mon Sep 17 00:00:00 2001
From: paidge <paidge_cs@hotmail.com>
Date: Mon, 24 Jan 2022 16:15:12 +0100
Subject: [PATCH] use unique names for fragments (apollo caching)

---
 graphql/queries.js | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/graphql/queries.js b/graphql/queries.js
index 5e0b8dd..308b41f 100644
--- a/graphql/queries.js
+++ b/graphql/queries.js
@@ -182,18 +182,18 @@ export const FAVORIS = gql`
 			selected {
 				__typename
 				id {
-					...attr
+					...attr_fav
 				}
 			}
 			others {
 				__typename
 				id {
-					...attr
+					...attr_fav
 				}
 			}
 		}
 	}
-	fragment attr on Identity {
+	fragment attr_fav on Identity {
 		__typename
 		pubkey
 		uid
-- 
GitLab