blob: d67d58af99f8f1f779ee5d9a9937b7e791b9af9a [file] [log] [blame]
use dataverse fuzzy1;
declare type DBLPType as open {
id: int32,
dblpid: string,
title: string,
authors: string,
misc: string
}
declare nodegroup group1 on nc1, nc2;
declare dataset DBLP(DBLPType)
partitioned by key id on group1;
write output to nc1:'/tmp/pub.adm';
for $paper in dataset('DBLP')
// where $paper.id = 1
return { 'dblp': $paper }