Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix search query command #19

Open
wants to merge 3 commits into
base: master
Choose a base branch
from

Conversation

seawatts
Copy link

@seawatts seawatts commented Dec 8, 2014

Referencing issue #18

@shan916
Copy link

shan916 commented Jun 30, 2016

Is there a reason this pull request is still open? I am having the exact same issue as #18. Currently, I am having to use my own modified version of chef-api.

@normanjoyner any update on this?

@wjozefssrf
Copy link

wjozefssrf commented Sep 22, 2016

i wana get only the ip address of node " server 1 "

im sending a request like this

Code :

chef.partialSearch("node", "name:server1",{"ip":"ipaddress"} ,function(err, res){

if (err){console.log(error);}

else{console.log(res);}

});
Or
chef.partialSearch("node", { q: "name:server1"} ,{"ip":"ipaddress"} ,function(err, res){
....
});

=> Response :

received status code 400 invalid value 'ipaddress' for no_key

function in code source : partialSearch: function(index, qs, data, fn) { ... }


Can you please give a valid syntax with example .
Thanks

Copy link

@wjozefssrf wjozefssrf left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Correct Syntax For Search Methods

Simple Search : Exemple

chef.search("node", {q: "name:server1" }, function(err, res){
   if (err){console.log(error);}
   else{console.log(res);}
   });

Partial Search : Exemple

chef.partialSearch("node", {q: "role:web"}, { name: ['name'] , 'ipaddress': ['ipaddress'] }, function(err, res){
  if (err){console.log(error);}
  else{console.log(res);}
});

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants