diff --git a/graphql/queries.js b/graphql/queries.js
index 1db39a0d6994ef6e4c98e78743967b609152aeee..933cc502033c898a5b4fc331b9208a43d2202945 100644
--- a/graphql/queries.js
+++ b/graphql/queries.js
@@ -223,41 +223,43 @@ export const SEARCH_MEMBER = gql`query SearchMemberWithHash($hash: Hash!) {
         membership_pending
         limitDate
         distance {
+          __typename
+          value {
             __typename
-            value {
-                __typename
-                ratio
-            }
-            dist_ok
+            ratio
+          }
+          dist_ok
         }
         received_certifications {
+          __typename
+          certifications {
             __typename
-            certifications {
-                __typename
-                from {
-                    ...attr
-                }
-                expires_on
+            from {
+              ...attr
             }
+            expires_on
+          }
         }
         sent_certifications {
-            __typename
-            to {
-                ...attr
-            }
-            expires_on
+          __typename
+          to {
+            ...attr
+          }
+          expires_on
         }
     }
 }
 fragment attr on Identity {
+  __typename
+  uid
+  hash
+  status
+  quality {
     __typename
-    uid
-    hash
-    status
-    quality {
-        ratio
-    }
-    received_certifications {
-        limit
-    }
+    ratio
+  }
+  received_certifications {
+    __typename
+    limit
+  }
 }`
\ No newline at end of file