0.0.2 • Published 6 years ago

awqlqb v0.0.2

Weekly downloads
20
License
MIT
Repository
github
Last release
6 years ago

awqlqb

NPM version

AdWords Query Language query builder for JavaScript

A query builder that helps you simply make AdWords Query String to AdWords' API for fetching data that you want.

Install

$ yarn add awqlqb
const AWQLQB = require('awqlqb')

Usage

A basic example

const AWQLQB = require('awqlqb')

const awql = new AWQLQB()

const str = awql
  .select(['VideoId', 'Clicks'])
  .from('VIDEO_PERFORMANCE_REPORT')
  .where({ field: 'VideoId', operator: 'IN', value: ['1234'] })
  .during({ since: '20181001', until: '20181018' })
  .asAWQL()

console.log(str)

// SELECT VideoId, Clicks FROM VIDEO_PERFORMANCE_REPORT WHERE VideoId IN [1234] DURING 20181001, 20181018

Note

Inspired by FQB

Reference

AWQL Intoduction

0.0.2

6 years ago

0.0.1

6 years ago