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

partialSearch Issue #28

Open
wjozefssrf opened this issue Sep 22, 2016 · 1 comment
Open

partialSearch Issue #28

wjozefssrf opened this issue Sep 22, 2016 · 1 comment

Comments

@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

@wjozefssrf
Copy link
Author

wjozefssrf commented Sep 22, 2016

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

No branches or pull requests

1 participant