Skip to content

GitLab

  • Menu
    • Projects Groups Snippets
      Help
Projects Groups Snippets
    • Loading...
  • Help
    • Help
    • Support
    • Community forum
    • Submit feedback
    • Contribute to GitLab
  • Sign in
  • A ApiQL
  • Project information
    • Project information
    • Activity
    • Labels
    • Members
  • Repository
    • Repository
    • Files
    • Commits
    • Branches
    • Tags
    • Contributors
    • Graph
    • Compare
  • Issues 0
    • Issues 0
    • List
    • Boards
    • Service Desk
    • Milestones
  • Merge requests 0
    • Merge requests 0
  • CI/CD
    • CI/CD
    • Pipelines
    • Jobs
    • Schedules
  • Deployments
    • Deployments
    • Environments
    • Releases
  • Monitor
    • Monitor
    • Metrics
    • Incidents
  • Packages & Registries
    • Packages & Registries
    • Container Registry
    • Infrastructure Registry
  • Analytics
    • Analytics
    • CI/CD
    • Repository
    • Value stream
  • Wiki
    • Wiki
  • Snippets
    • Snippets
  • Activity
  • Graph
  • Create a new issue
  • Jobs
  • Commits
  • Issue Boards
Collapse sidebar
  • bingo
  • ApiQL
  • Merge requests
  • !10

Merged
Created 5 years ago by Виктор Волков@viktor.volkovMaintainer

Develop

  • Overview 1
  • Commits 2
  • Pipelines 2
  • Changes 22
  • You're only seeing other activity in the feed. To add a comment, switch to one of the following options.
Please register or sign in to reply
Compare
  • master (base)

and
  • latest version
    361255a4
    2 commits, 5 years ago

22 files
+ 97
- 32

    Preferences

    File browser
    Compare changes
s‎rc‎
Lang‎uage‎
Interp‎reters‎
AndInterp‎reter.php‎ +2 -0
EqualsInte‎rpreter.php‎ +2 -0
GreaterThanIn‎terpreter.php‎ +2 -0
GreaterThanOrEqu‎alInterpreter.php‎ +2 -0
InInterp‎reter.php‎ +2 -0
IsNotNullInt‎erpreter.php‎ +2 -0
IsNullInte‎rpreter.php‎ +2 -0
LessThanInt‎erpreter.php‎ +2 -0
LessThanOrEqual‎Interpreter.php‎ +2 -0
LikeInter‎preter.php‎ +2 -0
NotEqualsInt‎erpreter.php‎ +2 -0
NotInInter‎preter.php‎ +2 -0
NotLikeInte‎rpreter.php‎ +2 -0
OrInterp‎reter.php‎ +2 -0
SpecInter‎preter.php‎ +2 -0
AbstractLa‎nguage.php‎ +4 -2
ApiQueryB‎uilder.php‎ +52 -23
JsonFi‎eld.php‎ +4 -4
LanguageF‎actory.php‎ +1 -1
LanguageIn‎terface.php‎ +2 -0
ApiQ‎L.php‎ +4 -1
tests/In‎tegration‎
ApiQLPostgresP‎latformTest.php‎ +0 -1
src/Language/Interpreters/AndInterpreter.php
+ 2
- 0
  • View file @ 361255a4

  • Edit in single-file editor

  • Edit in Web IDE


Show all unchanged lines Show 20 lines
{
/**
* Execute logical AND expression
*
* @return mixed
*/
public function execute()
{
Show 20 lines Show all unchanged lines
src/Language/Interpreters/EqualsInterpreter.php
+ 2
- 0
  • View file @ 361255a4

  • Edit in single-file editor

  • Edit in Web IDE


Show all unchanged lines Show 20 lines
{
/**
* Execute logical EQUALITY expression
*
* @return mixed
*/
public function execute()
{
Show 20 lines Show all unchanged lines
src/Language/Interpreters/GreaterThanInterpreter.php
+ 2
- 0
  • View file @ 361255a4

  • Edit in single-file editor

  • Edit in Web IDE


Show all unchanged lines Show 20 lines
{
/**
* Execute logical GREATER THAN expression
*
* @return mixed
*/
public function execute()
{
Show 20 lines Show all unchanged lines
src/Language/Interpreters/GreaterThanOrEqualInterpreter.php
+ 2
- 0
  • View file @ 361255a4

  • Edit in single-file editor

  • Edit in Web IDE


Show all unchanged lines Show 20 lines
{
/**
* Execute logical GREATER THAN OR EQUAL expression
*
* @return mixed
*/
public function execute()
{
Show 20 lines Show all unchanged lines
src/Language/Interpreters/InInterpreter.php
+ 2
- 0
  • View file @ 361255a4

  • Edit in single-file editor

  • Edit in Web IDE


Show all unchanged lines Show 20 lines
{
/**
* Execute logical IN expression
*
* @return mixed
*/
public function execute()
{
Show 20 lines Show all unchanged lines
src/Language/Interpreters/IsNotNullInterpreter.php
+ 2
- 0
  • View file @ 361255a4

  • Edit in single-file editor

  • Edit in Web IDE


Show all unchanged lines Show 20 lines
{
/**
* Execute logical IS NOT NULL expression
*
* @return mixed
*/
public function execute()
{
Show 20 lines Show all unchanged lines
src/Language/Interpreters/IsNullInterpreter.php
+ 2
- 0
  • View file @ 361255a4

  • Edit in single-file editor

  • Edit in Web IDE


Show all unchanged lines Show 20 lines
{
/**
* Execute logical IS NULL expression
*
* @return mixed
*/
public function execute()
{
Show 20 lines Show all unchanged lines
src/Language/Interpreters/LessThanInterpreter.php
+ 2
- 0
  • View file @ 361255a4

  • Edit in single-file editor

  • Edit in Web IDE


Show all unchanged lines Show 20 lines
{
/**
* Execute logical LESS THAN expression
*
* @return mixed
*/
public function execute()
{
Show 20 lines Show all unchanged lines
src/Language/Interpreters/LessThanOrEqualInterpreter.php
+ 2
- 0
  • View file @ 361255a4

  • Edit in single-file editor

  • Edit in Web IDE


Show all unchanged lines Show 20 lines
{
/**
* Execute logical LESS THAN OR EQUAL expression
*
* @return mixed
*/
public function execute()
{
Show 20 lines Show all unchanged lines
src/Language/Interpreters/LikeInterpreter.php
+ 2
- 0
  • View file @ 361255a4

  • Edit in single-file editor

  • Edit in Web IDE


Show all unchanged lines Show 20 lines
{
/**
* Execute logical LIKE expression
*
* @return mixed
*/
public function execute()
{
Show 20 lines Show all unchanged lines
src/Language/Interpreters/NotEqualsInterpreter.php
+ 2
- 0
  • View file @ 361255a4

  • Edit in single-file editor

  • Edit in Web IDE


Show all unchanged lines Show 20 lines
{
/**
* Execute logical NOT EQUAL expression
*
* @return mixed
*/
public function execute()
{
Show 20 lines Show all unchanged lines
src/Language/Interpreters/NotInInterpreter.php
+ 2
- 0
  • View file @ 361255a4

  • Edit in single-file editor

  • Edit in Web IDE


Show all unchanged lines Show 20 lines
{
/**
* Execute logical NOT IN expression
*
* @return mixed
*/
public function execute()
{
Show 20 lines Show all unchanged lines
0 Assignees
None
Assign to
0 Reviewers
None
Request review from
Milestone
No milestone
None
None
Time tracking
No estimate or time spent
0
Labels
None
Assign labels
  • No matching results
  • Manage project labels
Lock merge request
Unlocked
1
1 participant
user avatar
Reference: Bingo/ApiQL!10
Source branch: develop

    0 pending comments

Menu

Projects Groups Snippets
Help