diff --git a/app/server.ts b/app/server.ts index 8e3e6282421fb05e4efc213bff501afb744ba387..5cceba6b7b1be2537b6d4260656888481c336d56 100644 --- a/app/server.ts +++ b/app/server.ts @@ -95,12 +95,20 @@ const typeDefs = ` """ Contains the slugs of matched topics. The order is defined as follows: 1) topics that were part of the query come first (sorted by matching confidence). 2) other topics the engagement matches (sorted by matching confidence) """ - matchedTopics: [String] + matchedTopics: [String] @deprecated(reason: "Use matchedTopicsV2 instead. (since v1.51)") + """ + Contains the V2 slugs of matched topics. The order is defined as follows: 1) topics that were part of the query come first (sorted by matching confidence). 2) other topics the engagement matches (sorted by matching confidence) + """ + matchedTopicsV2: [String] """ Contains the slugs of matched skills. The order is defined as follows: 1) skills that were part of the query come first (sorted by matching confidence). 2) other topics the engagement matches (sorted by matching confidence) """ - matchedSkills: [String] + matchedSkills: [String] @deprecated(reason: "Use matchedSkillsV2 instead. (since v1.51)") + """ + Contains the V2 slugs of matched skills. The order is defined as follows: 1) skills that were part of the query come first (sorted by matching confidence). 2) other topics the engagement matches (sorted by matching confidence) + """ + matchedSkillsV2: [String] """ Contains the distance (in meters) between the engagement and the location given in the query.