All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.rethinkdb.ast.query.gen.Insert Maven / Gradle / Ivy

The newest version!
package com.rethinkdb.ast.query.gen;

import com.rethinkdb.RethinkDBConnection;
import com.rethinkdb.ast.query.RqlQuery;
import com.rethinkdb.proto.Q2L;
import com.rethinkdb.response.DBResponseMapper;
import com.rethinkdb.response.model.DMLResult;

import java.util.List;
import java.util.Map;

// extends RqlMethodQuery
public class Insert extends RqlQuery {

    public Insert(List args, java.util.Map optionalArgs) {
        this(null, args, optionalArgs);
    }

    public Insert(RqlQuery prev, List args, Map optionalArgs) {
        super(prev, Q2L.Term.TermType.INSERT, args, optionalArgs);
    }

    @Override
    public DMLResult run(RethinkDBConnection connection) {
        return DBResponseMapper.populateObject(new DMLResult(), (Map) super.run(connection));
    }
}