wikibase-cli
Version:
A command-line interface to Wikibase
12 lines (10 loc) • 384 B
JavaScript
import { editCommandsOptions } from '#lib/common_options'
export default {
alias: 'ac',
args: '<entity> <property> <value>',
description: 'add a claim to an entity',
options: Object.assign({ rank: true }, editCommandsOptions),
examples: [
{ args: 'Q4115189 P2002 Zorglub', comment: "add the Twitter account (P2002) 'Zorglub' to the Sandbox (Q4115189) entity" },
],
}