Skip to content
Snippets Groups Projects
Commit 7f785828 authored by Stephanie Freitag's avatar Stephanie Freitag
Browse files

HOLI-9793, HOLI-10970: mark V1 versions of matched topics and skills as deprecated

parent 7f4a2cb9
No related branches found
No related tags found
No related merge requests found
......@@ -95,7 +95,7 @@ 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)
"""
......@@ -104,7 +104,7 @@ const typeDefs = `
"""
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)
"""
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment