We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c9a28e3 commit 2864c44Copy full SHA for 2864c44
Server-Side Components/Background Scripts/Update KB Article Author/script.js
@@ -0,0 +1,8 @@
1
+var kbGr = new GlideRecord("kb_knowledge");
2
+kbGr.addEncodedQuery("author=62826bf03710200044e0bfc8bcbe5df1"); //Update this filter as required
3
+kbGr.query();
4
+while(kbGr.next())
5
+{
6
+ kbGr.author = '6816f79cc0a8016401c5a33be04be441'; //Update with new Author details
7
+ kbGr.update();
8
+}
0 commit comments