wikibase-cli
Version:
A command-line interface to Wikibase
13 lines (11 loc) • 413 B
JavaScript
import { entityAttributeCommandsOptions } from '#lib/common_options'
export default {
alias: 'desc',
args: '<entity>',
description: "Display the entity's description",
options: entityAttributeCommandsOptions,
examples: [
{ args: 'Q123', comment: 'Fetch the description for the entity Q123' },
{ args: 'Q123 --lang ja', comment: 'Fetch the description for the entity Q123 in Japanese' },
],
}